vite.config.ts 264 B

123456789101112
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. export default defineConfig({
  4. plugins: [react()],
  5. server: {
  6. proxy: {
  7. '/api': 'http://localhost:8080',
  8. '/ws': { target: 'ws://localhost:8080', ws: true }
  9. }
  10. }
  11. })