mirror of https://github.com/vector-im/riot-web
Specify the filename for worker-loader to avoid bundling workers
parent
d684f7f336
commit
8d4215557a
|
@ -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?$/,
|
||||||
|
|
Loading…
Reference in New Issue