补充
补充
entry
单个入口
module.exports = {
// 可简写成 entry:'./path/to/my/entry/file.js'
entry: {
main: './path/to/my/entry/file.js',
},
};
- 一次注入多个依赖文件,并且将它们的依赖关系绘制在一个 "chunk" 中
module.exports = {
entry: ['./src/file_1.js', './src/file_2.js'],
output: {
filename: 'bundle.js',
},
};
对象
https://www.webpackjs.com/concepts/entry-points/#entry-description-object