We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7d9b56 commit 21f24b9Copy full SHA for 21f24b9
src/node/build/bundle.ts
@@ -121,7 +121,10 @@ export async function bundle(
121
manualChunks(id, ctx) {
122
// move known framework code into a stable chunk so that
123
// custom theme changes do not invalidate hash for all pages
124
- if (id.startsWith('\0vite')) {
+ if (
125
+ id.startsWith('\0vite') ||
126
+ ctx.getModuleInfo(id)?.meta['vite:asset']
127
+ ) {
128
return 'framework'
129
}
130
if (id.includes('plugin-vue:export-helper')) {
0 commit comments