import vue from '@vitejs/plugin-vue'; import { fileURLToPath, URL } from 'node:url'; import { defineConfig, loadEnv } from 'vite'; export default defineConfig(({ mode }) => { const env = loadEnv(mode, process.cwd(), ''); const apiTarget = env.VITE_API_TARGET || 'http://127.0.0.1:8000'; return { plugins: [vue()], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, server: { proxy: { '/api': { target: apiTarget, changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, ''), }, }, }, }; });