import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], server: { // Bind on all interfaces so the dev server is reachable from other devices // on the LAN (phone/laptop) when launched via .NET Aspire. Aspire assigns // the port; this only widens the host from localhost to 0.0.0.0. host: true, }, })