import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vite.dev/config/
export default defineConfig({
  plugins: [react()],
  server: {
    port: parseInt(process.env.WEB_PORT || '7530'),
    proxy: {
      '/api': {
        target: `http://localhost:${process.env.API_PORT || '7531'}`,
        changeOrigin: true,
      },
      '/socket.io': {
        target: `http://localhost:${process.env.API_PORT || '7531'}`,
        ws: true,
        changeOrigin: true,
      },
    },
  },
})
