ChatDev/frontend/vite.config.js
2026-02-09 16:47:20 +01:00

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,
}
}
}
}
})