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

@@ -9,8 +9,8 @@ module.exports = merge(config, {
plugins: [
new HtmlWebpackPlugin({
inlineSource: '.(js|css)$',
template: 'index.html'
template: 'index.html',
}),
new HtmlWebpackInlineSourcePlugin()
new HtmlWebpackInlineSourcePlugin(),
]
});