- Backend Node.js/Express con PostgreSQL - Frontend React 19 con Vite - Docker Compose para orquestacion - Documentacion completa en README.md - Scripts SQL para base de datos - Configuracion de ejemplo (.env.example)
32 lines
597 B
JavaScript
32 lines
597 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react({
|
|
jsxRuntime: 'automatic',
|
|
})
|
|
],
|
|
server: {
|
|
host: true,
|
|
port: 5172,
|
|
allowedHosts: [
|
|
'hacienda.consultoria-as.com'
|
|
],
|
|
hmr: {
|
|
overlay: true,
|
|
},
|
|
// proxy:{
|
|
// '/api':{
|
|
// target: 'http://localhost:4000',
|
|
// changeOrigin : true,
|
|
// secure: false,
|
|
// }
|
|
// }
|
|
},
|
|
optimizeDeps: {
|
|
include: ['react', 'react-dom', 'react-router-dom'],
|
|
},
|
|
})
|