This commit is contained in:
Rizky 2023-10-21 00:05:37 +07:00
parent da2cb75001
commit a03110bab4
3 changed files with 8 additions and 3 deletions

View File

@ -12,8 +12,13 @@ export default page({
location.pathname.startsWith("/ed/")
) {
navigate("/ed/_/_");
} else {
navigate("/editor/_/_");
} else if (location.pathname.startsWith("/editor")) {
const arr = location.pathname.split("/");
if (arr.length <= 2) {
navigate("/editor/_/_");
} else if (arr.length === 3) {
navigate(location.pathname + "/");
}
}
} else {
navigate("/login");

View File

@ -10,7 +10,7 @@ const start = async () => {
let react = {
root: null as null | ReactRoot,
};
if (true || !["localhost", "127.0.0.1"].includes(location.hostname)) {
if (!["localhost", "127.0.0.1"].includes(location.hostname)) {
const sw = await registerServiceWorker();
const cacheCurrentPage = () => {

Binary file not shown.