3 lines
257 B
TypeScript
3 lines
257 B
TypeScript
import {defineConfig} from 'vite'; import react from '@vitejs/plugin-react';
|
|
export default defineConfig({plugins:[react()],server:{port:5173,watch:{usePolling:true,interval:1000},proxy:{'/api':'http://localhost:3001','/health':'http://localhost:3001'}}});
|