mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 22:02:55 +01:00
Webpack property __webpack_public_path__ must be a free var
This commit is contained in:
parent
1d1473de8e
commit
4273b13ac4
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -117,7 +117,7 @@ function createLoaderRules(languages, features, workers, outputPath, publicPath)
|
|||
}
|
||||
return {
|
||||
getWorkerUrl: function (moduleId, label) {
|
||||
var pathPrefix = (typeof window.__webpack_public_path__ === 'string' ? window.__webpack_public_path__ : ${JSON.stringify(publicPath)});
|
||||
var pathPrefix = (typeof __webpack_public_path__ === 'string' ? __webpack_public_path__ : ${JSON.stringify(publicPath)});
|
||||
return (pathPrefix ? stripTrailingSlash(pathPrefix) + '/' : '') + paths[label];
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue