File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ export default defineConfig(async () => {
173173 ] ,
174174 } ,
175175 } ) ,
176- qwikVite ( { debug : false } ) ,
176+ qwikVite ( { debug : true } ) ,
177177 partytownVite ( {
178178 dest : resolve ( 'dist' , '~partytown' ) ,
179179 } ) ,
Original file line number Diff line number Diff line change @@ -82,9 +82,10 @@ export const trigger = () => {
8282 console . log ( 'limit :' , limit ) ;
8383 const allowedPreloads = graph
8484 ? // The more likely the bundle, the more simultaneous preloads we want to allow
85- Math . max ( 1 , Number ( limit ) || config [ maxSimultaneousPreloadsStr ] * probability )
85+ Math . max ( 1 , ( Number ( limit ) || config [ maxSimultaneousPreloadsStr ] ) * probability )
8686 : // While the graph is not available, we limit to 2 preloads
8787 2 ;
88+ console . log ( 'allowedPreloads :' , allowedPreloads ) ;
8889 if ( preloadCount < allowedPreloads ) {
8990 queue . shift ( ) ;
9091 preloadOne ( bundle ) ;
You can’t perform that action at this time.
0 commit comments