panel : add redirection from goguely domain to morphoz domain

This commit is contained in:
isUnknown 2025-06-13 15:51:37 +02:00
parent 2705b73492
commit 89b4e6adf8

View file

@ -2,4 +2,8 @@ document.addEventListener("DOMContentLoaded", () => {
if (location.pathname === "/panel/site") {
location.href = "/panel/pages/projects";
}
if (location.origin.includes("goguely")) {
location.href =
"https://designtopack.morphozbygroupepochet.com" + location.pathname;
}
});