We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8018da7 commit d45fe80Copy full SHA for d45fe80
karma.conf.ts
@@ -78,10 +78,7 @@ export default config => {
78
}
79
}),
80
new FixDefaultImportPlugin()
81
- ],
82
- performance: {
83
- hints: false
84
- }
+ ]
85
},
86
87
coverageIstanbulReporter: {
webpack.config.ts
@@ -58,7 +58,7 @@ export default {
58
plugins: [
59
new CheckerPlugin(),
60
new TsConfigPathsPlugin(),
61
- new webpack.HotModuleReplacementPlugin(),
+ ...(IS_PROD ? [] : [new webpack.HotModuleReplacementPlugin()]),
62
new webpack.DefinePlugin({
63
ENV: JSON.stringify(IS_PROD ? 'production' : 'development')
64
@@ -71,8 +71,5 @@ export default {
71
__dirname + '/src'
72
),
73
74
75
76
77
};
0 commit comments