Skip to content

Commit 5a51177

Browse files
Update fetch.js
1 parent 45f83bb commit 5a51177

File tree

1 file changed

+1
-1
lines changed
  • _just/dangerously-insert-files/fix

1 file changed

+1
-1
lines changed

_just/dangerously-insert-files/fix/fetch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ window.fetch = function(input, init) {
5252
const newPath = `/third-party/monaco-editor/package/min${url}`;
5353
return originalFetch(newPath, init);
5454
} else if (url.startsWith('../../../vs')) {
55-
const newPath = `./third-party/monaco-editor/package/min${url.slice(8)}`;
55+
const newPath = `.${url.slice(8)}`;
5656
return originalFetch(newPath, init);
5757
} else {
5858
return originalFetch(input, init);

0 commit comments

Comments
 (0)