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:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user