Skip to content

Commit fc72de4

Browse files
committedJun 24, 2024
Implemented: add manifest.json file plainblack#162
1 parent b938924 commit fc72de4

File tree

5 files changed

+40
-1
lines changed

5 files changed

+40
-1
lines changed
 

‎nuxt.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default defineNuxtConfig({
5353
},
5454
{
5555
rel: 'manifest',
56-
href: '/site.webmanifest',
56+
href: '/manifest.json',
5757
},
5858
],
5959
meta: [

‎public/manifest.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"manifest_version": 3,
3+
"version": "1.0",
4+
"name": "Ving",
5+
"short_name": "Ving",
6+
"start_url": "/",
7+
"display": "standalone",
8+
"background_color": "#fff",
9+
"theme_color": "#fff",
10+
"icons": [
11+
{
12+
"src": "android-chrome-192x192.png",
13+
"sizes": "192x192",
14+
"type": "image/png"
15+
},
16+
{
17+
"src": "android-chrome-512x512.png",
18+
"sizes": "512x512",
19+
"type": "image/png"
20+
}
21+
],
22+
"default_locale": "en",
23+
"description": "A Web and REST code generation tool and services framework."
24+
}

‎ving/docs/.vitepress/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default defineConfig({
3535
{ text: 'Message Bus', link: '/subsystems/messagebus' },
3636
{ text: 'Pulumi', link: '/subsystems/pulumi' },
3737
{ text: 'Rest', link: '/subsystems/rest' },
38+
{ text: 'Social Integration', link: '/subsystems/social' },
3839
{ text: 'UI', link: '/subsystems/ui' },
3940
{ text: 'Utilities', link: '/subsystems/utils' },
4041
{ text: 'Ving Record', link: '/subsystems/ving-record' },

‎ving/docs/change-log.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ outline: deep
77

88
### 2024-06-23
99
* Fixed: examples in VingSchema need to differentiate between the able and the kind class #155
10+
* Implemented: add manifest.json file #162
1011

1112
### 2024-06-21
1213
* Replaced PrimeFlex with Tailwind.

‎ving/docs/subsystems/social.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
outline: deep
3+
---
4+
# Social Integration
5+
6+
## manifest.json
7+
8+
You can edit the `manifest.json` file in the `/public` folder of your project so that your app/site can be saved as an app on devices like the iPhone and Android. It will also be used by the [Web Share API](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share).
9+
10+
## Global Meta Tags and Favicons
11+
12+
You can add global meta tags to your site in `nuxt.config.mjs`.
13+

0 commit comments

Comments
 (0)