import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import svgr from 'vite-plugin-svgr'; import { VitePWA } from 'vite-plugin-pwa'; export default defineConfig(() => ({ server: { port: 3000, proxy: { '/api/socket': 'ws://localhost:8082', '/api': 'http://localhost:8082', }, }, build: { outDir: 'build', }, plugins: [ svgr(), react(), VitePWA({ workbox: { navigateFallbackDenylist: [/^\/api/], }, manifest: { short_name: '${title}', name: '${description}', theme_color: '${colorPrimary}', icons: [ { src: 'favicon.ico', sizes: '48x48 32x32 16x16', type: 'image/x-icon', }, { src: 'logo192.png', type: 'image/png', sizes: '192x192', purpose: 'any maskable', }, { src: 'logo512.png', type: 'image/png', sizes: '512x512', purpose: 'any maskable', }, ], }, }), ], }));