Files
im/vue.config.js
T

12 lines
298 B
JavaScript
Raw Normal View History

2025-12-23 00:18:46 +08:00
module.exports = {
2025-12-24 04:12:56 +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'
}