mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-18 06:31:27 +00:00
fix(vite): invalidate templates by dst
not src
(#21501)
This commit is contained in:
parent
8aa611a32e
commit
c6a62268c3
@ -48,7 +48,7 @@ export function viteNodePlugin (ctx: ViteBuildContext): VitePlugin {
|
|||||||
markInvalidates(server.moduleGraph.getModulesByFile(typeof plugin === 'string' ? plugin : plugin.src))
|
markInvalidates(server.moduleGraph.getModulesByFile(typeof plugin === 'string' ? plugin : plugin.src))
|
||||||
}
|
}
|
||||||
for (const template of ctx.nuxt.options.build.templates) {
|
for (const template of ctx.nuxt.options.build.templates) {
|
||||||
markInvalidates(server.moduleGraph.getModulesByFile(template?.src as string))
|
markInvalidates(server.moduleGraph.getModulesByFile(template.dst!))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user