This commit is contained in:
2025-09-11 10:55:33 +08:00
parent abb5b42d50
commit ae6fe2414e
655 changed files with 101048 additions and 3 deletions

15
vue.config.js Normal file
View File

@@ -0,0 +1,15 @@
let filePath = ''
let Timestamp = ''
if (process.env.UNI_PLATFORM === 'h5') {
Timestamp = '.' + new Date().getTime()
}
module.exports = {
configureWebpack: {
output: {
filename: `${filePath}[name]-${new Date().getTime()}-[hash].js`,
chunkFilename: `${filePath}[name]-${new Date().getTime()}-[hash].js`
}
}
}