File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
packages/qwik/src/optimizer/src/plugins Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -953,13 +953,13 @@ export const manifest = ${JSON.stringify(serverManifest)};\n`;
953
953
if (
954
954
// The preloader has to stay in a separate chunk if it's a client build
955
955
// the vite preload helper must be included or to prevent breaking circular dependencies
956
+ id . endsWith ( '@qwik.dev/core/build' ) ||
956
957
/ [ / \\ ] ( c o r e | q w i k ) [ / \\ ] d i s t [ / \\ ] p r e l o a d e r \. [ c m ] j s $ / . test ( id ) ||
957
958
id === '\0vite/preload-helper.js'
958
959
) {
959
960
return 'qwik-preloader' ;
960
961
} else if (
961
962
// likewise, core and handlers have to be in the same chunk so there's no import waterfall
962
- id . endsWith ( '@qwik.dev/core/build' ) ||
963
963
/ [ / \\ ] ( c o r e | q w i k ) [ / \\ ] ( h a n d l e r s | d i s t [ / \\ ] c o r e ( \. p r o d | \. m i n ) ? ) \. [ c m ] j s $ / . test ( id )
964
964
) {
965
965
return 'qwik-core' ;
You can’t perform that action at this time.
0 commit comments