import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; export default defineConfig(() => ({ plugins: [react()], // Relative base, so the build works wherever it is mounted base: "./", server: { port: 3000, }, }));