This commit is contained in:
msnie
2024-02-03 11:58:42 +01:00
parent 17ca1c805f
commit 5b0b5f548c
706 changed files with 135245 additions and 0 deletions
@@ -0,0 +1,12 @@
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();
@@ -0,0 +1,12 @@
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();