SHIP IT FASTER

The average enterprise on Netlify ships 140 times per week. Where does your team rank?

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.