Skip to content

Commit 801648a

Browse files
committed
fix: don't preload dynamic imports
closes #4770
1 parent 16a0ff8 commit 801648a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node/build/render.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ function resolvePageImports(
229229
) as Rollup.OutputChunk
230230
return [
231231
...appChunk.imports,
232-
...appChunk.dynamicImports,
233-
...pageChunk.imports,
234-
...pageChunk.dynamicImports
232+
// ...appChunk.dynamicImports,
233+
...pageChunk.imports
234+
// ...pageChunk.dynamicImports
235235
]
236236
}
237237

0 commit comments

Comments
 (0)