landscapeforge / frontend /vite.config.js
mnawfal29's picture
Upload folder using huggingface_hub
b89c27d verified
raw
history blame contribute delete
506 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
assetsDir: 'assets',
},
server: {
port: 5173,
proxy: {
// Proxy API calls to FastAPI during development
'/reset': 'http://localhost:8000',
'/step': 'http://localhost:8000',
'/schema': 'http://localhost:8000',
'/health': 'http://localhost:8000',
'/api': 'http://localhost:8000',
},
},
})