13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
const CMS_BACKEND_URL = 'http://192.168.10.75:7272';
|
|
|
|
const endpoints = {
|
|
auth: {
|
|
me: `http://localhost:7272/api/auth/me`,
|
|
signIn: `${CMS_BACKEND_URL}/api/auth/sign-in`,
|
|
signUp: `${CMS_BACKEND_URL}/api/auth/sign-up`,
|
|
//
|
|
},
|
|
};
|
|
|
|
export { endpoints };
|