module.exports = {
entry:'./src/index.js', //打包的入口文件,4.0以后默认就有
output:'./dist/main.js', //打包的输出,4.0以后默认就有
mode:'production', //环境
module:{
rules:[ //Loader配置
{test:/\.txt$/,use:'raw-loader'}
]
},
plugins:[ //插件配置
new HtmlwebpackPlugin({
template:'./src/index.html'
})
]
}
初识webpack:webpack配置组成
最新推荐文章于 2024-11-09 15:07:42 发布