npm scripts:
"scripts": {
"build": "webpack --entry=./src/index.js --output-filename=dist.js --mode=development"
}
script是npm提供的脚本命令功能,在这里我们可以直接使用由模块所添加的指令
webpack默认的源代码入口是src/index.js 默认的资源输出目录/dist中
使用配置文件:
webpack默认配置文件为webpack.config.js
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js'
},
mode: 'development'
}
网友评论