AI-PolicyTrace / ui /vite.config.ts
teja141290's picture
Deploy PolicyTrace Hugging Face Space
be54038
raw
history blame contribute delete
340 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
// Forward all /api/* requests to the FastAPI backend
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
})