feat: 前端完整源码纳入 Go 仓库(web/,标题已改为 系统调优 1.0)

This commit is contained in:
shishi
2026-08-09 12:32:54 +08:00
parent e00157ac2e
commit 0b9dd22f24
11 changed files with 1040 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
base: './',
server: {
host: '0.0.0.0',
allowedHosts: true,
},
build: {
outDir: 'www'
}
})