This commit is contained in:
cansnow
2026-01-15 22:50:35 +08:00
parent dd16348558
commit db99bebcb4
26 changed files with 433 additions and 284 deletions
+9 -8
View File
@@ -1,12 +1,13 @@
module.exports = {
// configureWebpack: {
// // 开启缓存
// cache: true,
// // 并行构建
// parallel: true,
// // 关闭sourcemap加速生产构建
// productionSourceMap: false
// },
configureWebpack: {
// 开启缓存
cache: true,
// // 并行构建
// parallel: true,
// // 关闭sourcemap加速生产构建
// productionSourceMap: false
},
// 关闭文件hash (开发环境)
filenameHashing: process.env.NODE_ENV !== 'production'
}