import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' // Relative base so the built artifact is mount-path agnostic; the target // frontgen writes the real into index.html at placement time. const base = './' export default defineConfig(() => ({ base, plugins: [react(), tailwindcss()], }));