本文主要是介绍《基于 Vue 组件库 的 Webpack5 配置》9.module.exports 可为数组类型且注意编译顺序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 文件夹}}
];
这篇关于《基于 Vue 组件库 的 Webpack5 配置》9.module.exports 可为数组类型且注意编译顺序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!