Socket
Socket
Sign inDemoInstall

gatsby-plugin-manifest

Package Overview
Dependencies
Maintainers
6
Versions
731
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-plugin-manifest

Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps


Version published
Weekly downloads
162K
increased by1.2%
Maintainers
6
Weekly downloads
 
Created

What is gatsby-plugin-manifest?

The gatsby-plugin-manifest package is a Gatsby plugin that allows you to manage and configure the web app manifest for your Gatsby site. This manifest is a JSON file that provides metadata about your web application, which is used by browsers to provide a more integrated user experience.

What are gatsby-plugin-manifest's main functionalities?

Basic Configuration

This feature allows you to set up the basic configuration for your web app manifest, including the name, short name, start URL, background color, theme color, display mode, and icon.

{
  "resolve": "gatsby-plugin-manifest",
  "options": {
    "name": "GatsbyJS",
    "short_name": "GatsbyJS",
    "start_url": "/",
    "background_color": "#f7f0eb",
    "theme_color": "#a2466c",
    "display": "standalone",
    "icon": "src/images/icon.png"
  }
}

Adding Icons

This feature allows you to specify an icon for your web application. The icon will be used in various places, such as the home screen on mobile devices.

{
  "resolve": "gatsby-plugin-manifest",
  "options": {
    "icon": "src/images/icon.png"
  }
}

Customizing Manifest

This feature allows you to customize various aspects of the manifest, such as the cache busting mode and whether to include a favicon.

{
  "resolve": "gatsby-plugin-manifest",
  "options": {
    "name": "My Gatsby Site",
    "short_name": "Gatsby",
    "start_url": "/",
    "background_color": "#ffffff",
    "theme_color": "#663399",
    "display": "minimal-ui",
    "icon": "src/images/icon.png",
    "cache_busting_mode": "none",
    "include_favicon": false
  }
}

Other packages similar to gatsby-plugin-manifest

Keywords

FAQs

Package last updated on 03 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc