Webpack property __webpack_public_path__ must be a free var

pull/2748/head
Mike Greiling 6 years ago
parent 1d1473de8e
commit 4273b13ac4
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596

@ -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…
Cancel
Save