新しく作成したGatsbyプロジェクトにContentfulをAPI連携させたく、Contentful側で設定とAPI Keyの取得を行い、次のように進めたところエラーが起きてしまい設定できません。
$ CONTENTFUL_SPACE_ID=[Space IDの値] CONTENTFUL_ACCESS_TOKEN=[Content Delivery API - access tokenの値] $ yarn develop yarn run v1.19.1 $ gatsby develop success open and validate gatsby-configs - 0.021s success load plugins - 0.595s success onPreInit - 0.003s success initialize cache - 0.021s success copy gatsby files - 0.054s ERROR Problems with gatsby-source-contentful plugin options: spaceId: undefined - "spaceId" is required accessToken: undefined - "accessToken" is required host (default value): "cdn.contentful.com" environment (default value): "master" downloadLocal (default value): false localeFilter (default value): [Function] forceFullSync (default value): false not finished onPreBootstrap - 0.038s error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
gatsby側の設定ファイル gatsby-config.js
は次のようにしてあります。具体的には gatsby-source-contentful
部分の options 内で設定したつもりです。
gatsby
1module.exports = { 2 siteMetadata: { 3 title: 'Gatsby Default Starter', 4 }, 5 plugins: [ 6 { 7 resolve: 'gatsby-source-contentful', 8 options: { 9 spaceId: process.env.CONTENTFUL_SPACE_ID, 10 accessToken: process.env.CONTENTFUL_ACCESS_TOKEN, 11 }, 12 }, 13 'gatsby-transformer-remark' 14 ], 15} 16
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。