-
module.exports
常见是对象类型,其实也可用数组类型; - 注意编译顺序,从后往前 编:
- 也就是说先编
another.js
,再编index.js
; - 所以代码第 9 行不能设置为
true
,仅在第一次,也就是代码第19行设置一次即可清空整个output
文件夹; - 如果代码第 9 行设置为
true
,则在编index.js
时,会删除another.js
已编译好的文件;
- 也就是说先编
module.exports = [
{
mode: 'production',
entry: {
"indexs": './index.js' ,
},
output: {
filename: '[name].js',
// clean: true,
}
},
{
mode: 'production',
entry: {
"another": './another.js' ,
},
output: {
filename: '[name].js',
clean: true, // 在每次构建前清理 output 文件夹
}
}
];
文章来源地址https://www.toymoban.com/news/detail-720810.html
文章来源:https://www.toymoban.com/news/detail-720810.html
到了这里,关于《基于 Vue 组件库 的 Webpack5 配置》9.module.exports 可为数组类型且注意编译顺序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!