暂存本地

This commit is contained in:
2026-04-27 09:57:00 +08:00
commit 4ac99bb417
88 changed files with 11520 additions and 0 deletions

17
vue.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: false,
productionSourceMap: false,
devServer: {
port: 8080,
open: true,
client: {
overlay: {
warnings: false,
errors: true
}
}
}
}