Files
nexusAI/packages/chat-client/vite.config.js
2026-04-06 03:35:52 -07:00

16 lines
316 B
JavaScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
},
server: {
port: 5173,
proxy: {
'/chat': 'http://192.168.0.205:4000',
'/sessions': 'http://192.168.0.205:4000',
},
},
});