This commit is contained in:
rafaeldpsilva
2025-12-20 00:18:45 +00:00
parent c3364cc422
commit a480466dd0

View File

@@ -13,4 +13,19 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url)), '@': fileURLToPath(new URL('./src', import.meta.url)),
}, },
}, },
server: {
cors: true,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: false,
},
'/health': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: false,
},
},
},
}) })