fact_checker/frontend/vite.config.js
VIliam 2533f75f2c Add backend, frontend, and project files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 15:27:31 +01:00

16 lines
289 B
JavaScript
Executable File

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
}
}
}
})