默认配置文件webpack.config.js
const path=reuqire('path');
module.exports={
entry:'./src/index.js',//入口文件
output:{
filename:'bundle.js',//出口打包文件名
path:path.resolve(__dirname,'dist')//打包到的目录
}
}
直接运行打包
npx webpack index.js
或配置package.json文件打包
"script":{
"bundle":"webpack"
}
直接yarn / npm run bundle就可以打包
网友评论