Files
home_server/udohaiku/view/src/environments/environment.ts
T
2024-02-03 11:58:42 +01:00

13 lines
337 B
TypeScript

export const environment = {
production: false,
BASE_URL: "http://localhost:3000/api"
};
let setPath = () => {
console.log("-----------------------------");
console.log(`PRODUCTION: ${environment.production}`);
console.log(`BASE URL IS: ${environment.BASE_URL}`);
console.log("-----------------------------");
};
setPath();