react-dash/vite.config.js
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 7809,
host: '0.0.0.0',
proxy: {
'/api': 'http://127.0.0.1:7800'
}
},
preview: {
port: 7809,
host: '0.0.0.0',
proxy: {
'/api': 'http://127.0.0.1:7800'
}
}
});