mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-08 11:06:37 +08:00
14 lines
525 B
JavaScript
14 lines
525 B
JavaScript
if (window.location.hostname === "adexgpt.adexpartners.com") {
|
|
var currentPath = window.location.pathname + window.location.search + window.location.hash;
|
|
var newUrl = "https://adexgpt.vercel.app" + currentPath;
|
|
window.location.href = newUrl;
|
|
}
|
|
|
|
/*
|
|
if (window.location.hostname === "adexgpt.vercel.app") {
|
|
var currentPath = window.location.pathname + window.location.search + window.location.hash;
|
|
var newUrl = "https://adexgpt.adexpartners.com" + currentPath;
|
|
window.location.href = newUrl;
|
|
}
|
|
*/
|