Spaces:
Running
Running
| import { defineConfig } from 'vite' | |
| import react from '@vitejs/plugin-react' | |
| // https://vitejs.dev/config/ | |
| export default defineConfig({ | |
| plugins: [react()], | |
| server: { | |
| host: '0.0.0.0', | |
| port: 5173, | |
| proxy: { | |
| '/api': { | |
| target: 'http://localhost:3000', | |
| changeOrigin: true, | |
| secure: false, | |
| } | |
| } | |
| }, | |
| preview: { | |
| host: '0.0.0.0', | |
| port: 5173, | |
| proxy: { | |
| '/api': { | |
| target: 'http://localhost:3000', | |
| changeOrigin: true, | |
| secure: false, | |
| } | |
| } | |
| }, | |
| // Fix for permission issues in Docker | |
| cacheDir: '/tmp/vite-cache', | |
| // Ensure base path is correct for production | |
| base: './' | |
| }) |