Gatsby Manifest
by John Vincent
Posted on September 20, 2019
Let's build a web app manifest with Gatsby.
Gatsby Manifest Plugin
Using the plugin gatsby-plugin-manifest
, add to gatsby-config.js
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `John Vincent`,
short_name: `John Vincent`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#ffffff`,
display: `standalone`,
orientation: `landscape`,
icon: `src/images/site/Cloud.jpg`, // This path is relative to the root of the site.
cache_busting_mode: `none`,
},
},
which generates file manifest.webmanifest
Gatsby
- Gatsby and Client Only Components
- Gatsby Getting Started
- Gatsby Google Analytics
- Gatsby Google Maps
- Gatsby Helmet
- Gatsby Manifest
- Gatsby Markdown
- Gatsby Overview of johnvincent.io
- Gatsby React Icons
- Gatsby Robots file
- Gatsby RSS Feed
- Gatsby Sass
- Gatsby Sitemap
- Gatsby Webpack Bundle Analyzer
- Migration of johnvincent.io to Next.js from Gatsby
- Overview of port to Next.js from Gatsby