import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], server: { port: 8080, host: true, }, preview: { port: 8080, host: true, }, build: { chunkSizeWarningLimit: 800, rollupOptions: { output: { manualChunks: { 'vendor-three': ['three'], 'vendor-roslib': ['roslib'], 'vendor-react': ['react', 'react-dom'], }, }, }, }, });