diff --git a/src/cli/commands/dev.ts b/src/cli/commands/dev.ts index 7f107dbf9b..1d18029c17 100644 --- a/src/cli/commands/dev.ts +++ b/src/cli/commands/dev.ts @@ -52,8 +52,8 @@ export default defineCommand({ ); await (diff.every((e) => hmrKeyRe.test(e.key)) - ? nitro.updateConfig(newConfig.config) // Full reload - : reload()); // Hot reload + ? nitro.updateConfig(newConfig.config) // Hot reload + : reload()); // Full reload }, }, }