gatsby-theme-rdfsite
v1.3.3
Published
## Quick Start
Readme
RDF-based website Gatsby theme
Quick Start
mkdir my-site
cd my-site
yarn init
# install gatsby-theme-minimal and it's dependencies
yarn add gatsby react react-dom gatsby-theme-rdfsiteThen add the theme to your gatsby-config.js. We'll use the long form
here for education purposes.
module.exports = {
plugins: [
{
resolve: "gatsby-theme-rdfsite",
options: {},
},
],
}That's it, you can now run your gatsby site using
yarn gatsby developDoing more with themes
You can use this as a place to start when developing themes. I
generally suggest using yarn
workspaces like the
gatsby-theme-examples repo
does,
but using yarn link or npm link is a viable alternative if you're
not familiar with workspaces.
