Ganti index.php menjadi index.html untuk menghindari redirect loop PHP

This commit is contained in:
mwpn
2025-12-18 13:36:36 +07:00
parent 6b1de8830d
commit c4d4d65882
8 changed files with 22 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ export const Auth = {
localStorage.removeItem(TOKEN_KEY);
localStorage.removeItem(USER_KEY);
sessionStorage.removeItem('auth_redirect_done');
window.location.href = '../index.php';
window.location.href = '../index.html';
}
};