mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 11:18:06 +00:00
27 lines
558 B
JavaScript
Executable File
27 lines
558 B
JavaScript
Executable File
import { defineConfig, loadEnv } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), '')
|
|
const target = env.VITE_API_BASE_URL || 'http://localhost:6400'
|
|
|
|
return {
|
|
plugins: [vue()],
|
|
server: {
|
|
host: true,
|
|
proxy: {
|
|
'/api': {
|
|
target: target,
|
|
changeOrigin: true,
|
|
},
|
|
'/ws': {
|
|
target: target,
|
|
ws: true,
|
|
changeOrigin: true,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|