@stakeordie/source-strapi
v0.4.0
Published
Custom Strapi source for Gridsome
Downloads
5
Readme
@gridsome/source-strapi
Strapi source for Gridsome
Install
yarn add @stakeordie/source-strapi
npm install @stakeordie/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: ''
}
}
}
]
}