import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' import { TanStackRouterVite } from '@tanstack/router-plugin/vite' import path from 'path' export default defineConfig({ plugins: [ TanStackRouterVite({ routesDirectory: './src/routes', generatedRouteTree: './src/routeTree.gen.ts' }), react(), tailwindcss(), ], resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, server: { port: 5173, allowedHosts: ['dev.lunarfront.tech'], proxy: { '/v1': { target: 'http://localhost:8000', changeOrigin: true, }, }, }, })