fix: update API_BASE_URL to remove template literals and log the value

This commit is contained in:
Addison Waldow 2026-02-10 20:47:16 -07:00
parent aaea8c9ef9
commit 959afa4dda

View File

@ -131,7 +131,7 @@ interface McpToolDefinition {
export const SERVER_NAME = "${serverName}";
export const SERVER_VERSION = "${serverVersion}";
// Base URL for the API, can be set via environment variable or determined from OpenAPI spec
export const API_BASE_URL = \`\$\{process.env.API_BASE_URL\}\` || "${determinedBaseUrl || ''}";
export const API_BASE_URL = process.env.API_BASE_URL || "${determinedBaseUrl || ''}";
console.error("API_BASE_URL is set to:", API_BASE_URL);
/**