Specify the filename for worker-loader to avoid bundling workers
This commit is contained in:
@@ -236,6 +236,11 @@ module.exports = (env, argv) => {
|
|||||||
{
|
{
|
||||||
test: /\.worker\.ts$/,
|
test: /\.worker\.ts$/,
|
||||||
loader: "worker-loader",
|
loader: "worker-loader",
|
||||||
|
options: {
|
||||||
|
// Prevent bundling workers since CSP forbids loading them
|
||||||
|
// from another origin.
|
||||||
|
filename: "[hash].worker.js",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.(ts|js)x?$/,
|
test: /\.(ts|js)x?$/,
|
||||||
|
|||||||
Reference in New Issue
Block a user