import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' import svgr from 'vite-plugin-svgr' import path from 'path' export default defineConfig({ plugins: [react(), tailwindcss(), svgr()], resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, server: { host: '0.0.0.0', allowedHosts: ['.localhost', 'console.bellsystems.net'], port: 5174, hmr: { clientPort: 8001, }, watch: { usePolling: true, interval: 100, }, proxy: { '/api': { target: 'http://backend:8000', changeOrigin: true, }, }, }, })