Skip to content

Commit bd540d5

Browse files
authored
fix(plugins): noop if config hook returns same config reference (#18467)
1 parent e5ea63d commit bd540d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vite/src/node/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ async function runConfigHook(
17401740
const handler = getHookHandler(hook)
17411741
if (handler) {
17421742
const res = await handler(conf, configEnv)
1743-
if (res) {
1743+
if (res && res !== conf) {
17441744
conf = mergeConfig(conf, res)
17451745
}
17461746
}

0 commit comments

Comments
 (0)