feat: add chinese vue workbench shell

This commit is contained in:
Yoilun
2026-05-25 19:20:57 +08:00
parent 69e1af7a17
commit 75e49c9552
21 changed files with 2339 additions and 1 deletions

17
web/vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
host: '127.0.0.1',
port: 13083,
strictPort: false,
proxy: {
'/api': {
target: 'http://127.0.0.1:18083',
changeOrigin: true,
},
},
},
})