summaryrefslogtreecommitdiff
path: root/public/manifest.json
diff options
context:
space:
mode:
authoryyamashita <yyamashita@hetzner.yyamashita.com>2026-08-22 19:21:12 +0900
committeryyamashita <yyamashita@hetzner.yyamashita.com>2026-08-22 19:21:12 +0900
commit7c80f5ce7e44b95d16e19de40de0f8079377c6b9 (patch)
treead189b750361af8c7cb040b56f42df5d4e5a89ee /public/manifest.json
Initial commit: todo app with passkey auth and PWA supportHEADmaster
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'public/manifest.json')
-rw-r--r--public/manifest.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/public/manifest.json b/public/manifest.json
new file mode 100644
index 0000000..0829b4a
--- /dev/null
+++ b/public/manifest.json
@@ -0,0 +1,13 @@
+{
+ "name": "Todo",
+ "short_name": "Todo",
+ "description": "個人用タスク管理",
+ "start_url": "/",
+ "display": "standalone",
+ "background_color": "#111827",
+ "theme_color": "#6c63ff",
+ "icons": [
+ { "src": "/icons/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
+ { "src": "/icons/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
+ ]
+}