import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; export default defineConfig({ plugins: [react()], server: { port: 3000, strictPort: true, host: true, allowedHosts: ["host.docker.internal"], }, });