🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

gatsby-plugin-remove-generator

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-plugin-remove-generator

Customise or remove the "_generator_" meta tag on your Gatsby site.

1.0.5
Source
npm
Version published
Weekly downloads
4K
0.43%
Maintainers
1
Weekly downloads
 
Created
Source

gatsby-plugin-remove-generator

Customise or remove the "generator" meta tag on your Gatsby site.

PRs Welcome Maintenance NPM version NPM license Build Status

Background

When Gatsby builds your site it will auto-inject a <meta> tag in the <head> of your site indicating the Gatsby version used to build your site. For example:

<meta name="generator" content="Gatsby 2.13.2" />

This is too much detail for my personal preference, and also has potential security implications.

Install

Note: The generator tag is only injected during a production build, and so this plugin will only have an effect on the production output.

To add this plugin to your Gatsby setup, simply install using yarn/npm

yarn add gatsby-plugin-remove-generator

and add to your config file:

// gatsby-config.js
module.exports = {
  ...
  plugins: [
    'gatsby-plugin-remove-generator',
  ]
};

Options

You can overwrite some of the plugin's default behaviour by passing supported options:

// gatsby-config.js
module.exports = {
  ...
  plugins: [
    {
      resolve: 'gatsby-plugin-remove-generator',
      options: {
        // Only remove the Gatsby version number instead of the whole node
        removeVersionOnly: true,
        // Customise the generator string altogether.
        // Note: This has the highest precedence of the available options.
        content: 'Custom string'
      },
  ]
};

Keywords

gatsby

FAQs

Package last updated on 29 May 2020

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