This commit is contained in:
2026-03-10 10:37:05 +08:00
commit 8ac6e443fc
17 changed files with 3063 additions and 0 deletions

25
vite.config.js Normal file
View File

@@ -0,0 +1,25 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
port: 3000,
proxy: {
'/session': {
target: 'http://localhost:8000',
changeOrigin: true,
},
'/workflow': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
})