fix: update API_BASE_URL to remove template literals and log the value
This commit is contained in:
parent
aaea8c9ef9
commit
959afa4dda
@ -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);
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user