Use new source map naming for the Webpack dev config

Signed-off-by: David Mehren <git@herrmehren.de>
Co-authored-by: Yannick Bungers <git@innay.de>
This commit is contained in:
David Mehren 2020-10-29 20:54:44 +01:00
parent c5fb4c67a5
commit d3d7912a64
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -6,9 +6,9 @@ module.exports = [
// merge common config
merge(common, {
mode: 'development',
devtool: 'cheap-module-eval-source-map'
devtool: 'eval-cheap-module-source-map'
}),
merge(htmlexport, {
mode: 'development',
devtool: 'cheap-module-eval-source-map'
devtool: 'eval-cheap-module-source-map'
})]