We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf174e3 commit 2419db5Copy full SHA for 2419db5
res/decoder-ring/decoder.js
@@ -33,7 +33,7 @@ function bundleSubject(bundle) {
33
const fetcher = new rxjs.BehaviorSubject(Pending.of());
34
bundleCache.set(bundle, fetcher);
35
36
- fetch(`/bundles/${bundle}/bundle.js.map`).then((res) => {
+ fetch(`../bundles/${bundle}/bundle.js.map`).then((res) => {
37
res.body.cancel(); /* Bail on the download immediately - it could be big! */
38
const status = res.ok;
39
if (status) {
@@ -211,7 +211,7 @@ function BundlePicker() {
211
setFileFetchStatus(None);
212
return;
213
}
214
- const observable = fetchAsSubject(`/bundles/${bundle}/${file}.map`)
+ const observable = fetchAsSubject(`../bundles/${bundle}/${file}.map`)
215
.pipe(
216
rxjs.operators.map((fetchStatus) => fetchStatus.flatMap(value => {
217
try {
0 commit comments