N4SM / frontend /vite.config.js
gaialive's picture
Upload vite.config.js
1e1c950 verified
raw
history blame contribute delete
674 Bytes
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: './'
})