Browse Source

Fixes webpack config

main
Eric Amodio 6 years ago
parent
commit
609125cf95
2 changed files with 3 additions and 5 deletions
  1. +2
    -3
      src/ui/webpack.config.js
  2. +1
    -2
      webpack.config.js

+ 2
- 3
src/ui/webpack.config.js View File

@ -76,8 +76,7 @@ module.exports = function(env, argv) {
beautify: !minify,
comments: false,
ecma: 5
},
sourceMap: sourceMaps
}
}
})
];
@ -124,7 +123,7 @@ module.exports = function(env, argv) {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
use: [{ loader: 'ts-loader' }],
exclude: /node_modules/
},
{

+ 1
- 2
webpack.config.js View File

@ -26,8 +26,7 @@ module.exports = function(env, argv) {
output: {
beautify: !minify,
comments: false
},
sourceMap: sourceMaps,
}
}
})
];

Loading…
Cancel
Save