9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
export const adminUrlCheck = () => {
|
|
const host = window.location.host.split(":")[0];
|
|
const okHost = ["localhost", "usmcd1vms036"];
|
|
if (okHost.includes(host)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|