We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c16bd08 commit 89d28cdCopy full SHA for 89d28cd
templates/app/webpack.make.js
@@ -33,9 +33,7 @@ module.exports = function makeWebpackConfig(options) {
33
* Should be an empty object if it's generating a test build
34
* Karma will set this when it's a test build
35
*/
36
- if(TEST) {
37
- config.entry = {};
38
- } else {
+ if(!TEST) {
39
config.entry = {
40
app: './client/app/app.<%= scriptExt %>',
41
polyfills: './client/app/polyfills.<%= scriptExt %>',
@@ -352,7 +350,6 @@ module.exports = function makeWebpackConfig(options) {
352
350
colors: true,
353
351
reasons: true
354
};
355
- config.debug = false;
356
}
357
358
config.node = {
0 commit comments