File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/app/store/entities/sandboxes/bundler Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,7 @@ import logError from '../../../../utils/error';
77
88const debug = _debug ( 'cs:app:packager' ) ;
99
10- export const PACKAGER_URL = 'https://cdn.jsdelivr.net/webpack/v1' ;
11- export const PACKAGER_V2_URL = 'https://cdn.jsdelivr.net/webpack/v2' ;
10+ export const PACKAGER_URL = 'https://cdn.jsdelivr.net/webpack/v2' ;
1211
1312/**
1413 * Request the packager, if retries > 4 it will throw if something goes wrong
@@ -19,9 +18,6 @@ export const PACKAGER_V2_URL = 'https://cdn.jsdelivr.net/webpack/v2';
1918async function requestPackager ( query : string ) {
2019 let retries = 0 ;
2120
22- // Request packager v2 for cache warmup
23- callApi ( `${ PACKAGER_V2_URL } /${ query } /manifest.json` ) ;
24-
2521 while ( true ) {
2622 debug ( `Trying to call packager for ${ retries } time` ) ;
2723 try {
You can’t perform that action at this time.
0 commit comments