import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import path from 'path' export default defineConfig({ plugins: [react()], resolve: { alias: { '@': path.resolve(__dirname, './src') }, }, server: { host: '0.0.0.0', port: 3000, allowedHosts: ['frontend', '127.0.0.1', 'localhost'], proxy: { '/api': { target: 'http://backend:8000', changeOrigin: true, rewrite: (p) => p.replace(/^\/api/, ''), }, }, }, })