You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
705 B
42 lines
705 B
// // 单个文件
|
|
// module.exports = {
|
|
// // 表示打包的入口文件
|
|
// input: 'main.js',
|
|
// // 表示输出文件
|
|
// output: {
|
|
// file: './dist/dist.js',
|
|
// format: 'cjs'
|
|
// }
|
|
// }
|
|
|
|
// // 多个文件
|
|
// module.exports = [{
|
|
// input: 'main.js',
|
|
// output: {
|
|
// file: './dist/dist.js',
|
|
// format: 'cjs'
|
|
// }
|
|
// }, {
|
|
// input: 'main2.js',
|
|
// output: {
|
|
// file: './dist/dist2.js',
|
|
// format: 'iife',
|
|
// name: 'MyBundle'
|
|
// }
|
|
// }]
|
|
|
|
|
|
// 多个文件
|
|
module.exports = {
|
|
input: 'main.js',
|
|
output: [{
|
|
file: './dist/dist.js',
|
|
format: 'cjs'
|
|
},
|
|
{
|
|
file: './dist/dist2.js',
|
|
format: 'iife',
|
|
name: 'MyBundle'
|
|
}
|
|
]
|
|
}
|