Netlift 构建:gatsby-source-prismic - 插件选项无效 | Netlify 中的环境变量

问题描述

当我尝试在 Netlify 上部署我的 Gatsby 站点时,它停止部署并抛出错误 gatsby-source-prismic - invalid plugin options

本地构建完美,我没有问题,我添加一个带有 .envPRISMIC_REPOSITORY_NAMEPRISMIC_ACCESS_TOKEN 文件,其中包含来自 Prismic.io 的值。

我的插件选项是:

      resolve: `gatsby-source-prismic`,options: {
        repositoryName: process.env.PRISMIC_REPOSITORY_NAME,accesstoken: process.env.PRISMIC_ACCESS_TOKEN,schemas: {
          post: require("./src/schemas/articles.json"),},

堆栈:

10:32:38 PM: Failed to validate error Error [ValidationError]: child "type" fails because ["type" must be one of [GRAPHQL,CONfig,WEBPACK,PLUGIN]]
10:32:38 PM:     at Object.exports.process (/opt/build/repo/node_modules/@hapi/joi/lib/errors.js:202:19)
10:32:38 PM:     at internals.Object._validateWithOptions (/opt/build/repo/node_modules/@hapi/joi/lib/types/any/index.js:763:31)
10:32:38 PM:     at internals.Object.validate (/opt/build/repo/node_modules/@hapi/joi/lib/types/any/index.js:797:21)
10:32:38 PM:     at constructError (/opt/build/repo/node_modules/gatsby-cli/lib/structured-errors/construct-error.js:52:32)
10:32:38 PM:     at Reporter.error (/opt/build/repo/node_modules/gatsby-cli/lib/reporter/reporter.js:135:59)
10:32:38 PM:     at Reporter.panic (/opt/build/repo/node_modules/gatsby-cli/lib/reporter/reporter.js:75:34)
10:32:38 PM:     at Object.webhookBody [as panic] (/opt/build/repo/node_modules/gatsby/src/utils/api-runner-node.js:201:16)
10:32:38 PM:     at Object.exports.sourceNodes (/opt/build/repo/node_modules/gatsby-source-prismic/src/gatsby-node.ts:160:8)
10:32:38 PM:     at runAPI (/opt/build/repo/node_modules/gatsby/src/utils/api-runner-node.js:460:22)
10:32:38 PM:     at Promise.catch.decorateEvent.pluginName (/opt/build/repo/node_modules/gatsby/src/utils/api-runner-node.js:611:13)
10:32:38 PM:     at Promise._execute (/opt/build/repo/node_modules/bluebird/js/release/debuggability.js:384:9)
10:32:38 PM:     at Promise._resolveFromExecutor (/opt/build/repo/node_modules/bluebird/js/release/promise.js:518:18)
10:32:38 PM:     at new Promise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:103:10)
10:32:38 PM:     at /opt/build/repo/node_modules/gatsby/src/utils/api-runner-node.js:609:16
10:32:38 PM:     at tryCatcher (/opt/build/repo/node_modules/bluebird/js/release/util.js:16:23)
10:32:38 PM:     at Object.gotValue (/opt/build/repo/node_modules/bluebird/js/release/reduce.js:166:18) {
10:32:38 PM:   isJoi: true,10:32:38 PM:   details: [
10:32:38 PM:     {
10:32:38 PM:       message: '"type" must be one of [GRAPHQL,PLUGIN]',10:32:38 PM:       path: [Array],10:32:38 PM:       type: 'any.allowOnly',10:32:38 PM:       context: [Object]
10:32:38 PM:     }
10:32:38 PM:   ],10:32:38 PM:   _object: {
10:32:38 PM:     context: {},10:32:38 PM:     value: undefined,10:32:38 PM:     type: 'string',10:32:38 PM:     path: [],10:32:38 PM:     branch: [ undefined ],10:32:38 PM:     failures: [Function: failures],10:32:38 PM:     pluginName: 'gatsby-source-prismic',10:32:38 PM:     text: 'There was an error',10:32:38 PM:     level: 'ERROR',10:32:38 PM:     stack: [],10:32:38 PM:     docsUrl: 'https://gatsby.dev/issue-how-to'
10:32:38 PM:   },10:32:38 PM:   annotate: [Function]
10:32:38 PM: }
10:32:38 PM: not finished source and transform nodes - 0.127s
10:32:38 PM: error Command Failed with exit code 1.

希望有人能帮我解决这个问题。我不知道是什么错误

解决方法

在使用 Gatsby + Netlify 处理环境变量时,您必须在它们前面加上 GATSBY_ 前缀,以使它们可用于 Netlify。所以:

PRISMIC_ACCESS_TOKEN
PRISMIC_REPOSITORY_NAME

会变成:

GATSBY_PRISMIC_ACCESS_TOKEN
GATSBY_PRISMIC_REPOSITORY_NAME

在您的 .env 文件和 Netlify 的本地更改它们:

Environment variables in Netlify

注意:您可以在 https://app.netlify.com/sites/[YOUR_PROJECT]/settings/deploys#environment

中访问该配置

资源: