Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gridsome/gridsome-starter-contentful
😎 Contentful starter for Gridsome
https://github.com/gridsome/gridsome-starter-contentful
contentful contentful-api
Last synced: 2 months ago
JSON representation
😎 Contentful starter for Gridsome
- Host: GitHub
- URL: https://github.com/gridsome/gridsome-starter-contentful
- Owner: gridsome
- Created: 2018-08-04T01:12:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-15T12:04:31.000Z (over 3 years ago)
- Last Synced: 2024-10-01T03:24:13.346Z (2 months ago)
- Topics: contentful, contentful-api
- Language: Vue
- Homepage:
- Size: 9.77 KB
- Stars: 22
- Watchers: 6
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-gridsome - gridsome-starter-contentful
README
# Contentful Starter for Gridsome
## Guide
Add your Contentful Space ID and Access Token to the plugin options.
```js
// gridsome.config.js
module.exports = {
templates: {
// Add templates for content types here.
// Read more: https://gridsome.org/docs/templates/
},
plugins: [
{
use: '@gridsome/source-contentful',
options: {
space: 'SPACE_ID', // required
accessToken: 'ACCESS_TOKEN', // required
host: 'cdn.contentful.com',
environment: 'master',
typeName: 'Contentful'
}
}
]
}
```