Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@canrau/gatsby-plugin-react-head
Advanced tools
Gatsby plugin to setup up react-head and make it SSR ready
This plugin sets up react-head with server-rendering for you.
More about thread-safe meta tag management with react-head
npm install --save react-head@next gatsby-plugin-react-head
gatsby-plugin-react-head
depends on react-head!
To use the new whitelist feature you have to specifically install react-head@next as shown above, the whitelist option hasn't been merged into the main release so far as it's still a proof of concept.
Add the plugin to your gatsby-config.js
.
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-react-head`,
// optional options
options: {
// an array of whitelisted tags to disable `[data-rh]` attribute for them
whitelist: [
`title`,
`[name="description"]`,
`[property^="og:"]`,
`[property^="fb:"]`,
],
},
},
],
}
import * as React from 'react';
import { Title, Link, Meta } from 'react-head';
const App = () => (
<>
<Title>GaiAma.org</Title>
<Link rel="canonical" content="http://www.gaiama.org/" />
<Meta name="description" content="Making rainforests cool againa" />
// ...
</>
);
FAQs
Gatsby plugin to setup up react-head and make it SSR ready
We found that @canrau/gatsby-plugin-react-head 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.