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

(cherry picked from commit cb4f5b249f)

Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com>
This commit is contained in:
Grot (@grafanabot)
2021-06-01 10:33:44 +02:00
committed by GitHub
co-authored by Andrej Ocenas
parent a108647836
commit cb0ffc3ba3
+6 -1
View File
@@ -160,7 +160,12 @@ module.exports = {
},
{
test: /\.worker\.js$/,
use: { loader: 'worker-loader' },
use: {
loader: 'worker-loader',
options: {
inline: 'fallback',
},
},
},
],
},