Fix webpack dev server checks

This commit is contained in:
Bill Thornton
2021-10-05 00:26:00 -04:00
parent eccd79c4e0
commit 7b797aff43
2 changed files with 4 additions and 6 deletions
-6
View File
@@ -1,6 +1,5 @@
const common = require('./webpack.common');
const { merge } = require('webpack-merge');
const { DefinePlugin } = require('webpack');
module.exports = merge(common, {
// In order for live reload to work we must use "web" as the target not "browserlist"
@@ -24,11 +23,6 @@ module.exports = merge(common, {
}
]
},
plugins: [
new DefinePlugin({
__WEBPACK_SERVE__: true
})
],
devServer: {
compress: true,
client: {