aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-07 18:53:56 +0900
committernsfisis <nsfisis@gmail.com>2025-12-07 18:53:56 +0900
commit4b755c758e920fb0295b066fa20ce6667334546b (patch)
treec9d8c7a8fa22b65214e7aa9a20dcfebf6c83c6a9 /index.html
parentf443ac18ccb8ab34fb5bf69b0802eb69cf89cf06 (diff)
downloadkioku-4b755c758e920fb0295b066fa20ce6667334546b.tar.gz
kioku-4b755c758e920fb0295b066fa20ce6667334546b.tar.zst
kioku-4b755c758e920fb0295b066fa20ce6667334546b.zip
feat(pwa): add PWA support with vite-plugin-pwa
Configure Progressive Web App functionality: - Add vite-plugin-pwa with workbox for service worker - Create web manifest with app metadata and icons - Add offline fallback page for when network is unavailable - Update index.html with PWA meta tags and theme color 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'index.html')
-rw-r--r--index.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/index.html b/index.html
index c2e05cf..d7c3aca 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,10 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta name="theme-color" content="#4CAF50" />
+ <meta name="description" content="A spaced repetition learning app" />
+ <link rel="icon" href="/icon.svg" type="image/svg+xml" />
+ <link rel="apple-touch-icon" href="/icon.svg" />
<title>Kioku</title>
</head>
<body>