fix(nuxt): empty nitro `buildDir` in dev mode (#29068)

This commit is contained in:
Daniel Roe 2024-09-19 13:11:30 +01:00
parent 111a3c25a3
commit 466a98b6e0
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B
1 changed files with 1 additions and 1 deletions

View File

@ -529,11 +529,11 @@ export async function initNitro (nuxt: Nuxt & { _nitro?: Nitro }) {
// nuxt build/dev
nuxt.hook('build:done', async () => {
await nuxt.callHook('nitro:build:before', nitro)
await prepare(nitro)
if (nuxt.options.dev) {
return build(nitro)
}
await prepare(nitro)
await prerender(nitro)
logger.restoreAll()