feat: 集成PWA基础配置,支持用户以类App形式打开项目

Note: 暂未实现缓存、离线等进阶PWA功能
This commit is contained in:
dingning
2025-10-30 17:45:38 +08:00
parent 43a80cf308
commit 1ca082bdf0
3 changed files with 40 additions and 0 deletions

16
manifest.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "Type Words - 词文记 | 单词跟打 · 文章跟打",
"short_name": "",
"start_url": ".",
"description": "在线英语打字练习平台,支持单词跟打与文章跟打,帮助提升打字速度与英语学习效率。",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#ffffff",
"icons": [
{
"src": "/favicon.png",
"sizes": "800x800",
"type": "image/png"
}
]
}