webpack.config之plugin
2018-10-30 本文已影响0人
EastwardFlow
const config = {
plugins: [
new HtmlWebpackPlugin({template: './src/index.html'})
]
};
require引用插件
在config.plugins数组中new一个插件的实例来使用
const config = {
plugins: [
new HtmlWebpackPlugin({template: './src/index.html'})
]
};
require引用插件
在config.plugins数组中new一个插件的实例来使用