Harshith Mullapudi d111220aca changes
2025-06-12 00:41:00 +05:30

11 lines
254 B
TypeScript

// Use a global variable to store the base path
let globalBasePath: string = "http://localhost:3000";
export function setGlobalBasePath(basePath: string) {
globalBasePath = basePath;
}
export function getGlobalBasePath() {
return globalBasePath;
}