Route api traffic through the main container.
Tests / backend-test (pull_request) Successful in 7s
Tests / frontend-test (pull_request) Failing after 8s
Tests / e2e-test (pull_request) Failing after 1m29s

This commit is contained in:
(jenkins)
2026-04-16 23:59:14 +01:00
parent 29048e9d2a
commit eda4697b03
3 changed files with 12 additions and 5 deletions
+7 -1
View File
@@ -12,7 +12,13 @@ export default defineConfig({
server: {
port: 3050,
host: '0.0.0.0',
allowedHosts: true
allowedHosts: true,
proxy: {
'/api': {
target: 'http://backend:3051',
changeOrigin: true
}
}
},
build: {
outDir: 'build',