14 lines
251 B
JavaScript
Executable File
14 lines
251 B
JavaScript
Executable File
export default {
|
|
build: {
|
|
minify: 'terser', // 启用 Terser 压缩
|
|
terserOptions: {
|
|
compress: {
|
|
keep_fnames: true // 禁用压缩对象名
|
|
},
|
|
output: {
|
|
beautify: true // 保留对象名
|
|
}
|
|
}
|
|
}
|
|
}
|