File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function bundleSubject(bundle) {
3333 const fetcher = new rxjs . BehaviorSubject ( Pending . of ( ) ) ;
3434 bundleCache . set ( bundle , fetcher ) ;
3535
36- fetch ( `/bundles/${ bundle } /bundle.js.map` ) . then ( ( res ) => {
36+ fetch ( `.. /bundles/${ bundle } /bundle.js.map` ) . then ( ( res ) => {
3737 res . body . cancel ( ) ; /* Bail on the download immediately - it could be big! */
3838 const status = res . ok ;
3939 if ( status ) {
@@ -211,7 +211,7 @@ function BundlePicker() {
211211 setFileFetchStatus ( None ) ;
212212 return ;
213213 }
214- const observable = fetchAsSubject ( `/bundles/${ bundle } /${ file } .map` )
214+ const observable = fetchAsSubject ( `.. /bundles/${ bundle } /${ file } .map` )
215215 . pipe (
216216 rxjs . operators . map ( ( fetchStatus ) => fetchStatus . flatMap ( value => {
217217 try {
You can’t perform that action at this time.
0 commit comments