feat: add PWA manifest and Apple Web App configuration, and bump package version

This commit is contained in:
kuekhaoyang
2026-01-02 14:00:24 +08:00
parent c5e2397f2a
commit e7a3671b8e
4 changed files with 28 additions and 3 deletions
+8
View File
@@ -23,6 +23,14 @@ export const metadata: Metadata = {
description: siteConfig.description,
icons: {
icon: '/icon.png',
apple: '/icon.png',
},
manifest: '/manifest.json',
themeColor: '#000000',
appleWebApp: {
capable: true,
statusBarStyle: 'black-translucent',
title: siteConfig.name,
},
};
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "kvideo",
"version": "3.8.9",
"version": "3.9.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "kvideo",
"version": "3.8.9",
"version": "3.9.0",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "kvideo",
"version": "3.8.9",
"version": "3.9.0",
"private": true,
"scripts": {
"dev": "next dev",
+17
View File
@@ -0,0 +1,17 @@
{
"name": "KVideo - 视频聚合平台",
"short_name": "KVideo",
"description": "视频聚合平台",
"start_url": "/",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"icons": [
{
"src": "/icon.png",
"sizes": "1024x1024",
"type": "image/png",
"purpose": "any maskable"
}
]
}