Files
im/vue.config.js
T

13 lines
287 B
JavaScript
Raw Normal View History

2026-01-15 22:50:35 +08:00
2025-12-23 00:18:46 +08:00
module.exports = {
2026-01-15 22:50:35 +08:00
configureWebpack: {
// 开启缓存
cache: true,
// // 并行构建
// parallel: true,
// // 关闭sourcemap加速生产构建
// productionSourceMap: false
},
2025-12-23 00:18:46 +08:00
// 关闭文件hash (开发环境)
filenameHashing: process.env.NODE_ENV !== 'production'
}