shamin-gatsby-theme
v0.1.8
Published
Create beautiful api documentation with gatsby and greenboard
Downloads
2
Readme
Greenboard
Create beautiful api documentation with gatsby and greenboard
Installation
Setup your folder and install gatsby, react and react-dom
mkdir my-docs
cd my-docs
yarn init
yarn add gatsby react react-domInstall greenboard
yarn add greenboardThen add greenboard to your gatsby-config.js.
module.exports = {
plugins: [
{
resolve: "greenboard",
options: {},
},
],
}That's it, you can now run your gatsby site using
yarn gatsby developBuild the production files
yarn gatsby build