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: { port: 8080, host: true, allowedHosts: ['.xinion.lan'], hmr: { host: 'insight.xinion.lan', clientPort: 443, protocol: 'wss', }, proxy: { '/api/v1/crm': { target: 'http://localhost:3100', changeOrigin: true, }, '/api': { target: 'http://localhost:3000', changeOrigin: true, }, }, }, build: { outDir: 'dist', sourcemap: true, }, });