import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], resolve: { alias: { '@': '/src', }, }, server: { host: '0.0.0.0', port: 5173, strictPort: true, proxy: { '/api': { target: 'http://localhost:8080', changeOrigin: true, }, '/ws': { target: 'ws://localhost:8080', ws: true, }, }, }, build: { target: 'es2020', sourcemap: true, rollupOptions: { output: { manualChunks: { pixi: ['pixi.js'], react: ['react', 'react-dom'], }, }, }, }, });