Compare commits

..

No commits in common. "e92ad62f1f08cc2d31df8a8ff8b7595fa90edb4f" and "3f5de2841c07c522f843e1673c620747ea71631b" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ function platCheck() {
if (!isMobileDevice) {
let _href = window.location.href;
let _origin = window.location.origin;
window.location.href = _href.replace(_origin, import.meta.env.VITE_PC_HOST);
_href.replace(_origin, import.meta.env.VITE_PC_HOST)
window.location.href = _href;
}
}
platCheck();