Community Plugin
View plugin on GitHubGatsby Theme Rocket
A super fast blog built with Gatsby.
Installation
Install the gatsby-theme-rocket
package:
# with npm:
npm run --save gatsby-theme-rocket
# with yarn:
yarn add gatsby-theme-rocket
Usage
Add the gatsby-theme-rocket
pacakge in your gatsby-config.js
file:
// gatsby-config.js
module.exports = {
plugins: [`gatsby-theme-rocket`]
}
You can also pass a options
object if you want:
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-theme-rocket',
options: {
siteUrl: 'https://theme-rocket.netlify.com',
title: 'Gatsby Theme Rocket',
description: 'A super fast blog',
author: 'Raincal'
}
}
]
}