From 7c80f5ce7e44b95d16e19de40de0f8079377c6b9 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 22 Aug 2026 19:21:12 +0900 Subject: Initial commit: todo app with passkey auth and PWA support Co-Authored-By: Claude Sonnet 4.6 --- public/manifest.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 public/manifest.json (limited to 'public/manifest.json') 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" } + ] +} -- cgit v1.2.3