gatsby-plugin-react-helmet
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "gatsby-plugin-react-helmet", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Stub description for gatsby-plugin-react-helmet", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
# gatsby-plugin-react-helmet | ||
Provides drop-in support for server rendering data added with [React | ||
Helmet](https://github.com/nfl/react-helmet). | ||
Provides drop-in support for server rendering data added with | ||
[React Helmet](https://github.com/nfl/react-helmet). | ||
React Helmet is a component which lets you control your document head using their | ||
React component. | ||
React Helmet is a component which lets you control your document head using | ||
their React component. | ||
With this plugin, attributes you add in their component, e.g. title, meta attributes, etc. | ||
will get added to the static HTML pages Gatsby builds. | ||
With this plugin, attributes you add in their component, e.g. title, meta | ||
attributes, etc. will get added to the static HTML pages Gatsby builds. | ||
@@ -21,5 +21,3 @@ ## Install | ||
```javascript | ||
plugins: [ | ||
`gatsby-plugin-react-helmet`, | ||
] | ||
plugins: [`gatsby-plugin-react-helmet`] | ||
``` |
2284
23