Добавлена Яндекс.Капча

This commit is contained in:
mi
2026-07-23 18:53:32 +03:00
parent 31efbf3b69
commit 8c3c454998
36 changed files with 836 additions and 35 deletions
@@ -1,23 +1,24 @@
{
"short_name": "HAN Chat",
"name": "HAN Chat",
"id": "/",
"description": "Помощник по документам и жизни в России",
"icons": [
{
"src": "/favicon.png",
"sizes": "64x64",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/icon-192.png",
"type": "image/png",
"sizes": "360x360",
"sizes": "192x192",
"purpose": "any maskable"
},
{
"src": "/icon-512.png",
"type": "image/png",
"sizes": "1024x1024",
"sizes": "512x512",
"purpose": "any maskable"
}
],
@@ -27,5 +28,7 @@
"orientation": "portrait",
"theme_color": "#030213",
"background_color": "#ffffff",
"lang": "ru"
"lang": "ru",
"dir": "ltr",
"categories": ["productivity", "utilities"]
}
@@ -0,0 +1,7 @@
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker
.register("/service-worker.js", { updateViaCache: "none" })
.catch((error) => console.warn("Service worker registration failed:", error));
});
}