Package Exports
- @nuxtjs/manifest
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nuxtjs/manifest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Manifest
This module is not stable yet.
Adds Web App Manifest with no pain.
- Creates
static/manifest.json
- Adds
<link rel=manifest>
to pages if not exits. - Adds
<link rel=favicon>
to pages if not exits. - Adds
<meta name=description>
to pages if not exits. - Adds
<meta name=theme-color>
to pages if not exits. - Adds title to pages if not exits.
💡 Usage
- Add
manifest
module - Add
static/icon.png
for your app icon. - Add additional options to
nuxt.manifest
to override defaults:
manifest:{
name:'My Awesome App',
dir:'rtl'
}