ynnoj / gatsby-source-printful

Printful store data for your Gatsby projects
https://gatsbysourceprintful.gtsb.io
MIT License
20 stars 4 forks source link
gatsby gatsby-plugin gatsby-source-plugin printful

gatsby-source-printful

Printful store data for your Gatsby projects

Getting Started

yarn add gatsby-source-printful

Configuration

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-source-printful`,
    options: {
      apiKey: '...',
      paginationLimit: 100 // Default value is 20
    },
  },
],