-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented: add manifest.json file #162
- Loading branch information
Showing
5 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`. | ||
|