mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
6 lines
171 B
JavaScript
6 lines
171 B
JavaScript
|
module.exports = () => {
|
||
|
localStorage.removeItem('me');
|
||
|
document.cookie = `i=; domain=.${CONFIG.host}; expires=Thu, 01 Jan 1970 00:00:01 GMT;`;
|
||
|
location.href = '/';
|
||
|
};
|