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

13 lines
335 B
TypeScript

export const environment = {
production: true,
BASE_URL: "https://udohaiku.com/api"
};
let setPath = () => {
console.log("-----------------------------");
console.log(`PRODUCTION: ${environment.production}`);
console.log(`BASE URL IS: ${environment.BASE_URL}`);
console.log("-----------------------------");
};
setPath();