mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 21:03:26 +00:00
Fix Foundry Rivet base path and frontend endpoint fallback
This commit is contained in:
parent
9a2c60bf30
commit
a8bcfa36bb
3 changed files with 24 additions and 2 deletions
|
|
@ -273,8 +273,16 @@ function stripTrailingSlash(value: string): string {
|
|||
return value.replace(/\/$/, "");
|
||||
}
|
||||
|
||||
function deriveBackendEndpoints(endpoint: string): { appEndpoint: string; rivetEndpoint: string } {
|
||||
function normalizeLegacyBackendEndpoint(endpoint: string): string {
|
||||
const normalized = stripTrailingSlash(endpoint);
|
||||
if (normalized.endsWith("/api/rivet")) {
|
||||
return `${normalized.slice(0, -"/api/rivet".length)}/v1/rivet`;
|
||||
}
|
||||
return normalized;
|
||||
}
|
||||
|
||||
function deriveBackendEndpoints(endpoint: string): { appEndpoint: string; rivetEndpoint: string } {
|
||||
const normalized = normalizeLegacyBackendEndpoint(endpoint);
|
||||
if (normalized.endsWith("/rivet")) {
|
||||
return {
|
||||
appEndpoint: normalized.slice(0, -"/rivet".length),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue