加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
var htmlWebpackPlugin=require('html-webpack-plugin')
module.exports={
entry:{
main:'./src/index.js',
a:'./src/script/a.js',
b:'./src/script/b.js',
c:'./src/script/c.js',
},
output:{
filename:'js/[name]-[hash].js',
publicPath:'http://www.cdn.com'
},
module:{//指定对应文件格式的loader
rules:[
{test: /\.css$/,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules: true
}
}
]
}
]
},
plugins:[
new htmlWebpackPlugin({
filename:'a.html',
inject:'body',
template:'index.html',
title:'this is a.html',
chunks:['main','a'],
// excludeChunks:[]除了....chunk以外
// minify:{//压缩文件
// removeCommonts:true,
// collapseWhitespace:true
// }
}),
new htmlWebpackPlugin({
filename:'b.html',
inject:'body',
template:'index.html',
title:'this is b.html',
chunks:['b']
}),
new htmlWebpackPlugin({
filename:'c.html',
inject:'body',
template:'index.html',
title:'this is c.html',
chunks:['c']
})
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化