NodeGraph: Make web worker inline fixing error when assets are loaded with different origin (#35013)

This commit is contained in:
Andrej Ocenas 2021-06-01 09:56:28 +02:00 committed by GitHub
parent cb3c317e81
commit cb4f5b249f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,7 +160,12 @@ module.exports = {
},
{
test: /\.worker\.js$/,
use: { loader: 'worker-loader' },
use: {
loader: 'worker-loader',
options: {
inline: 'fallback',
},
},
},
],
},