2019-03-02 22:35:43 +05:30
|
|
|
// tell webpack to load assets from origin so that web workers don't break
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
|
|
export function resetServiceWorkersPublicPath() {
|
|
|
|
// __webpack_public_path__ is a global variable that can be used to adjust
|
|
|
|
// the webpack publicPath setting at runtime.
|
|
|
|
// see: https://webpack.js.org/guides/public-path/
|
|
|
|
const relativeRootPath = (gon && gon.relative_url_root) || '';
|
|
|
|
const webpackAssetPath = `${relativeRootPath}/assets/webpack/`;
|
|
|
|
__webpack_public_path__ = webpackAssetPath; // eslint-disable-line camelcase
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
// monaco-editor-webpack-plugin currently (incorrectly) references the
|
|
|
|
// public path as a property of `window`. Once this is fixed upstream we
|
|
|
|
// can remove this line
|
|
|
|
// see: https://github.com/Microsoft/monaco-editor-webpack-plugin/pull/63
|
|
|
|
window.__webpack_public_path__ = webpackAssetPath; // eslint-disable-line
|
2019-03-02 22:35:43 +05:30
|
|
|
}
|