We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd35d46 commit 9410f83Copy full SHA for 9410f83
_just/dangerously-insert-files/fix/fetch.js
@@ -52,7 +52,7 @@ window.fetch = function(input, init) {
52
const newPath = `/third-party/monaco-editor/package/min${url}`;
53
return originalFetch(newPath, init);
54
} else if (url.startsWith('../../../vs')) {
55
- const newPath = `/third-party/monaco-editor/package/min${url.slice(8)}`;
+ const newPath = `${window.location.protocol}//${window.location.hostname}/third-party/monaco-editor/package/min${url.slice(8)}`;
56
57
} else {
58
return originalFetch(input, init);
0 commit comments