You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This directory is the theme package itself. You should rename this atsome point to begatsby-theme-{my-theme-name}. Also change thepackage.json name field and the corresponding dependency in theexample directory'spackage.json/gatsby-config.js to match the chosen name.
gatsby-theme-minimal/
gatsby-config.js: An empty gatsby-config that you can use as a starting point for building functionality into your theme.
index.js: Since themes also function as plugins, this is an empty file thatgatsby needs to use this theme as a plugin.
package.json: The dependencies that your theme will pull in when people install it.gatsby should be apeerDependency.
example
This is an example usage of your theme. It should look the same as thesite of someone who installed and used your theme from npm.
example/
gatsby-config.js: Specifies which theme to use and any other one-off config a site might need.
src/: Source code such as one-off pages or components that might live ina user's site.