diff --git a/scripts/webpack/webpack.common.js b/scripts/webpack/webpack.common.js index f894f2dff95..385ca33bfdf 100644 --- a/scripts/webpack/webpack.common.js +++ b/scripts/webpack/webpack.common.js @@ -160,7 +160,12 @@ module.exports = { }, { test: /\.worker\.js$/, - use: { loader: 'worker-loader' }, + use: { + loader: 'worker-loader', + options: { + inline: 'fallback', + }, + }, }, ], },