Files
tautkan-kanban/client/vite.config.ts
T
Power BI Dev 88c7c653c2 first init
2026-08-17 10:52:09 +07:00

21 lines
403 B
TypeScript

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