Skip to content

Commit

Permalink
Implemented: add manifest.json file #162
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Jun 24, 2024
1 parent b938924 commit fc72de4
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nuxt.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineNuxtConfig({
},
{
rel: 'manifest',
href: '/site.webmanifest',
href: '/manifest.json',
},
],
meta: [
Expand Down
24 changes: 24 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"manifest_version": 3,
"version": "1.0",
"name": "Ving",
"short_name": "Ving",
"start_url": "/",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#fff",
"icons": [
{
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"default_locale": "en",
"description": "A Web and REST code generation tool and services framework."
}
1 change: 1 addition & 0 deletions ving/docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export default defineConfig({
{ text: 'Message Bus', link: '/subsystems/messagebus' },
{ text: 'Pulumi', link: '/subsystems/pulumi' },
{ text: 'Rest', link: '/subsystems/rest' },
{ text: 'Social Integration', link: '/subsystems/social' },
{ text: 'UI', link: '/subsystems/ui' },
{ text: 'Utilities', link: '/subsystems/utils' },
{ text: 'Ving Record', link: '/subsystems/ving-record' },
Expand Down
1 change: 1 addition & 0 deletions ving/docs/change-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ outline: deep

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

### 2024-06-21
* Replaced PrimeFlex with Tailwind.
Expand Down
13 changes: 13 additions & 0 deletions ving/docs/subsystems/social.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
outline: deep
---
# Social Integration

## manifest.json

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).

## Global Meta Tags and Favicons

You can add global meta tags to your site in `nuxt.config.mjs`.

0 comments on commit fc72de4

Please sign in to comment.