fix(config): swap production apiBaseUrl and apiOrigin back to correct hosts

The two fields had been flipped, pointing API calls at the origin host
(platform.savefamily.app) and sending the Origin header as the gateway
host (api-platform.savefamily.app). Restore the intended wiring:
gateway handles /api, and Origin is the platform domain.
This commit is contained in:
2026-04-17 11:13:40 +02:00
parent bf1032245a
commit 5b6ed5cf16

View File

@@ -1,6 +1,6 @@
{
"env": "production",
"apiBaseUrl": "https://platform.savefamily.app/gateway/api/",
"apiOrigin": "https://api-platform.savefamily.app/",
"apiBaseUrl": "https://api-platform.savefamily.app/gateway/api/",
"apiOrigin": "https://platform.savefamily.app",
"wsUrl": "wss://api-platform.savefamily.app/websocket"
}