Minor changes

This commit is contained in:
schmelczerandras 2020-08-30 14:51:54 +02:00
parent 0a71a1ae34
commit a9de28e056
9 changed files with 12 additions and 14 deletions

View file

@ -15,6 +15,7 @@ module.exports = {
watchOptions: {
ignored: /node_modules/,
},
//devtool: 'inline-source-map',
devServer: {
host: '0.0.0.0',
disableHostCheck: true,
@ -22,7 +23,7 @@ module.exports = {
optimization: {
minimizer: [
new TerserJSPlugin({
sourceMap: !isProduction,
sourceMap: isDevelopment,
}),
new OptimizeCSSAssetsPlugin({}),
],