- Used Hello World Starter (all packages included)
- All components ready to go (including imports)
- main.css - all styles ready to go
- No font plugin
- React-icons
- Limit amount of components - better overview
- Use constants to avoid repetition
- Favicon in Static
- Make sure such content-types exist in your Strapi application. Or replace/delete them in gatsby-config.js
{
resolve: `gatsby-source-strapi`,
options: {
apiURL: `http://localhost:1337`,
queryLimit: 1000, // Default to 100
// Older Plugin Version 0.0.12 (used in the starter)
// contentTypes: [`jobs`, `projects`, `blogs`, ],
// New Plugin Version 1+ (npm install gatsby-source-strapi@latest)
// collectionTypes: [`jobs`, `projects`, `blogs`, ],
//singleTypes:[`about` ]
contentTypes: [`jobs`, `projects`, `blogs`],
singleTypes: [`about`],
},
},