Files
ranking/frontend/vite.config.js
Frederico Castro 9a8332b740 feat: Melhorias visuais no header e suporte a ngrok
- Melhora estilo do box de metadados (contraste e legibilidade)
- Formata total de consultores com separador de milhares
- Adiciona allowedHosts para acesso via ngrok
2025-12-09 22:03:04 -03:00

18 lines
367 B
JavaScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
allowedHosts: ['.ngrok-free.app', 'localhost', '127.0.0.1'],
proxy: {
'/api': {
target: 'http://backend:8000',
changeOrigin: true,
},
},
},
});