copilot-swe-agent[bot] 245f1c3941 Ready for Railway deployment
Co-authored-by: ariavn-byte <151469489+ariavn-byte@users.noreply.github.com>
2025-11-15 23:11:28 +00:00

39 lines
741 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
},
build: {
outDir: 'dist',
sourcemap: false,
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
},
},
rollupOptions: {
output: {
manualChunks: {
vendor: ['react', 'react-dom'],
},
},
},
},
preview: {
port: parseInt(process.env.PORT || '3000'),
host: '0.0.0.0',
}
})