Spaces:
Sleeping
Sleeping
| import { defineConfig } from 'vite' | |
| import react from '@vitejs/plugin-react' | |
| export default defineConfig({ | |
| plugins: [react()], | |
| build: { | |
| outDir: 'dist', | |
| assetsDir: 'assets', | |
| sourcemap: false, | |
| minify: 'terser', | |
| }, | |
| server: { | |
| proxy: { | |
| '/api': 'http://localhost:7860', | |
| '/ws': { target: 'ws://localhost:7860', ws: true }, | |
| } | |
| } | |
| }) | |