| 123456789101112131415161718192021222324 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- export default defineConfig(() => ({
- plugins: [react()],
- server: {
- port: 5173,
- proxy: {
- '/api': {
- target: process.env.VITE_API_TARGET || 'http://localhost:3843',
- changeOrigin: true,
- },
- '/ws': {
- target: (process.env.VITE_API_TARGET || 'http://localhost:3843').replace('http', 'ws'),
- ws: true,
- changeOrigin: true,
- },
- },
- },
- build: {
- outDir: 'dist',
- sourcemap: false,
- },
- }))
|