gridsome / gridsome-starter-contentful

😎 Contentful starter for Gridsome

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contentful Starter for Gridsome

Guide

Add your Contentful Space ID and Access Token to the plugin options.

// 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'
      }
    }
  ]
}

About

😎 Contentful starter for Gridsome


Languages

Language:Vue 75.6%Language:JavaScript 24.4%