Specify the filename for worker-loader to avoid bundling workers
This commit is contained in:
parent
d684f7f336
commit
8d4215557a
1 changed files with 5 additions and 0 deletions
|
@ -236,6 +236,11 @@ module.exports = (env, argv) => {
|
|||
{
|
||||
test: /\.worker\.ts$/,
|
||||
loader: "worker-loader",
|
||||
options: {
|
||||
// Prevent bundling workers since CSP forbids loading them
|
||||
// from another origin.
|
||||
filename: "[hash].worker.js",
|
||||
},
|
||||
},
|
||||
{
|
||||
test: /\.(ts|js)x?$/,
|
||||
|
|
Loading…
Reference in a new issue