blob: 2f088a10751865e1aaa3e21fe4ea50733baf713f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
export const apiBaseUrl = (function () {
if (process.env.TIMELINE_USEDEVAPI) {
console.log('process.env.TIMELINE_USEDEVAPI is set, use dev api server!');
return 'http://localhost:5000';
} else if (process.env.NODE_ENV === 'production') {
console.log('Production mode!');
return 'https://api.crupest.xyz';
} else {
console.log('Development mode!');
return 'http://localhost:5000';
}
})();
|