I have this in my webpack config
...
optimization: {
minimize: true,
minimizer: [new TerserPlugin(
{
terserOptions: {
sourceMap: {
content: 'inline',
includeSources: true,
url: 'inline'
}
}
})],
},
...
Everything is undefined when stepping over code in the browser.
Switching mangle off makes the problem go away.
Why is this happening? πππ
When Terser mangles, does it not update the sourcemap with information to de-mangle?
I have this in my webpack config
Everything is
undefinedwhen stepping over code in the browser.Switching mangle off makes the problem go away.
Why is this happening? πππ
When Terser mangles, does it not update the sourcemap with information to de-mangle?