abhijithk666 / gatsby-website

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gatsby-Strapi Portfolio Starter

Setup Notes

  1. Used Hello World Starter (all packages included)
  2. All components ready to go (including imports)
  3. main.css - all styles ready to go
  4. No font plugin
  5. React-icons
  6. Limit amount of components - better overview
  7. Use constants to avoid repetition
  8. Favicon in Static
  9. 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`],
      },
    },

About

License:BSD Zero Clause License


Languages

Language:JavaScript 94.0%Language:CSS 6.0%