import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; import { TanStackRouterVite } from "@tanstack/router-vite-plugin"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), TanStackRouterVite()], server: { port: 5173, strictPort: true, hmr: { port: 5173, host: "127.0.0.1", }, }, });