webpack: disable performance hints

This commit is contained in:
Shuanglei Tao
2018-05-03 00:12:04 +08:00
parent d4566b38e4
commit 9bc52a6123
5 changed files with 19 additions and 16 deletions

View File

@@ -10,8 +10,8 @@ module.exports = merge(config, {
mode: 'development',
plugins: [
new HtmlWebpackPlugin({
template: 'index.html'
})
template: 'index.html',
}),
],
serve: {
content: __dirname + '/dist',
@@ -27,6 +27,6 @@ module.exports = merge(config, {
}
);
app.use(convert(ttydProxy));
}
},
}
});