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
Adds Web App Manifest with no pain!
Setup
- Add
@nuxtjs/manifest
dependency using yarn or npm to your project - Add
@nuxtjs/manifest
tomodules
section ofnuxt.config.js
{
modules: [
'@nuxtjs/manifest'
]
}
- Add additional options to
manifest
section ofnuxt.config.js
to override defaults
{
manifest: {
name: 'My Awesome App',
lang: 'fa'
}
}