gatsby-theme-rocket

:rocket: A super fast blog

Usage no npm install needed!

<script type="module">
  import gatsbyThemeRocket from 'https://cdn.skypack.dev/gatsby-theme-rocket';
</script>

README

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'
      }
    }
  ]
}