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
This commit is contained in:
Frederico Castro
2025-12-09 22:03:04 -03:00
parent e7b34e33a8
commit 9a8332b740
3 changed files with 15 additions and 9 deletions

View File

@@ -1,11 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
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',
@@ -13,4 +14,4 @@ export default defineConfig({
},
},
},
})
});