philverify-api / frontend /vite.config.js
Ryan Christian D. Deniega
fix: cold start 502, favicon, verify state persistence
b1c84b5
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
// No rewrite — preserve /api prefix so dev matches production routing
},
},
},
})