- Melhora estilo do box de metadados (contraste e legibilidade) - Formata total de consultores com separador de milhares - Adiciona allowedHosts para acesso via ngrok
18 lines
367 B
JavaScript
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,
|
|
},
|
|
},
|
|
},
|
|
});
|