
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
gatsby-plugin-remove-generator
Advanced tools
Customise or remove the generator meta tag on your Gatsby site.
Customise or remove the generator meta tag on your Gatsby site.
When Gatsby creates a build of your site it will auto-inject a <meta>
tag 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.
This plugin lets you either customize this content string, or remove the meta
tag completely.
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
# or
npm install gatsby-plugin-remove-generator
and add the plugin to your config file:
// gatsby-config.js
module.exports = {
...
plugins: [
'gatsby-plugin-remove-generator',
]
};
And you're done. By default, with the above setup, the meta
tag will be removed completely from your build. Use the options config to customize the behavior.
// gatsby-config.js
module.exports = {
...
plugins: [
{
resolve: 'gatsby-plugin-remove-generator',
options: {
// Only remove the Gatsby version number instead of the whole `meta` tag
removeVersionOnly: true,
// Customise the generator content string.
// Note: This has the highest precedence of the available options.
content: 'Custom string'
},
]
};
FAQs
Customise or remove the generator meta tag on your Gatsby site.
The npm package gatsby-plugin-remove-generator receives a total of 3,067 weekly downloads. As such, gatsby-plugin-remove-generator popularity was classified as popular.
We found that gatsby-plugin-remove-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.