Closed ctwowt closed 4 years ago
I resolved using SourceMapDevToolPlugin
exclude inline script file that webpack not actually generate that source map file ...
And that sourcemap file url was wrong so for those webpack runtime inline script file not need sourcemap file
PS: poor English...
/* config.plugin('source-map') */
new SourceMapDevToolPlugin(
{
exclude: [
/startup.*\.js$/
],
filename: '[file].map'
}
),