chore: 项目环境升级为 JDK25,Spring 4.1,项目重构为多模块

This commit is contained in:
2026-09-08 15:02:18 +08:00
parent d392436620
commit 81a0d81f11
168 changed files with 2785 additions and 1375 deletions

View File

@@ -0,0 +1,22 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
resolve: { dedupe: ['vue', 'vue-router'] },
server: {
port: 15173,
proxy: {
'/api': 'http://127.0.0.1:8080'
}
},
build: {
target: 'es2022',
sourcemap: true,
rollupOptions: {
output: {
manualChunks: { vue: ['vue', 'vue-router'] }
}
}
}
})