0.2.0 • Published 8 months ago

@kriya/gridsome-source-strapi v0.2.0

Weekly downloads
-
License
-
Repository
github
Last release
8 months ago

@gridsome/source-strapi

Strapi source for Gridsome

Install

  • npm install @gridsome/source-strapi
  • yarn add @gridsome/source-strapi
  • pnpm install @gridsome/source-strapi

Usage

export default {
  plugins: [
    {
      use: '@gridsome/source-strapi',
      options: {
        apiURL: 'http://localhost:1337',
        queryLimit: 1000, // Defaults to 100
        contentTypes: ['article', 'user'],
        singleTypes: ['impressum'],
        // Possibility to login with a Strapi user,
        // when content types are not publicly available (optional).
        loginData: {
          identifier: '',
          password: ''
        }
      }
    }
  ]
}