Failing attempt tp add sourcemap

This commit is contained in:
Mitra Ardron 2019-09-13 15:03:47 +10:00
parent 0229bd92aa
commit 0fd93bd5c2

View File

@ -38,6 +38,7 @@ module.exports = {
optimization: {
minimizer: [
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
compress: {
unused: false,
@ -48,5 +49,6 @@ module.exports = {
}
})
]
}
},
devtool: 'source-map'
}