13 lines
370 B
TypeScript
Executable File
13 lines
370 B
TypeScript
Executable File
export const getPathname = () => {
|
|
if (["localhost", "prasi.avolut.com"].includes(location.hostname)) {
|
|
if (
|
|
location.pathname.startsWith("/vi") ||
|
|
location.pathname.startsWith("/prod") ||
|
|
location.pathname.startsWith("/deploy")
|
|
) {
|
|
return "/" + location.pathname.split("/").slice(3).join("/");
|
|
}
|
|
}
|
|
return location.pathname;
|
|
};
|