some fixes

This commit is contained in:
Ayaka
2022-10-16 21:25:03 +00:00
parent 49598678a4
commit 96dbbf8a6d
7 changed files with 182 additions and 18 deletions

View File

@@ -9,7 +9,7 @@
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#000000" />
<meta name="theme-color" content="#cf93d9" />
<meta name="description" content="Project sekai stickers maker" />
<title>Project Sekai Stickers</title>
@@ -22,6 +22,15 @@
<meta property="og:url" content="https://st.ayaka.one" />
<meta property="og:site_name" content="Project Sekai Stickers" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@OriginalAyaka" />
<meta name="twitter:creator" content="@OriginalAyaka" />
<meta name="twitter:title" content="Project Sekai Stickers" />
<meta
name="twitter:description"
content="Make your own Project sekai stickers!"
/>
<meta name="twitter:image" content="/og-image.png" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

View File

@@ -0,0 +1,9 @@
//remove service worker and reload page
if ("serviceWorker" in navigator) {
navigator.serviceWorker.getRegistrations().then(function (registrations) {
for (let registration of registrations) {
registration.unregister();
}
window.location.reload();
});
}