简介
add-asset-html-webpack-plugin 将 JavaScript或CSS文件添加到由html-webpack-plugin插件生成的HTML中去。
html-webpack-plugin
默认配置会在出口目录中(通过output.path选项配置)生成一个index.html文件;
生成的index.html文件将会以script标签的形式引入每一个输出js文件(通过output.filename选项配置)。
js
new HtmlWebpackPlugin({
// 引入项目的根HTML文件
template: path.join(__dirname,'./public/index.html'),
minify: {
// 移除空格
collapseWhitespace: true,
// 移除注释
removeComments: true
}
})
add-asset-html-webpack-plugin
将静态资源插入到 html 中
js
const AddAssetHtmlWebpackPlugin = require('add-asset-html-webpack-plugin')
// 配合dll, 引入dll中已经压缩的库
new AddAssetHtmlWebpackPlugin({
filepath: resolve(__dirname, 'dll/jquery.js')
})