Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby Theme Rocket

Netlify Status

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'
      }
    }
  ]
}
© 2023 Gatsby, Inc.