Gatsby-source-wordpress插件抛出错误,显示在AWS Amplify服务中找不到的gatsby util

时间:2019-06-27 14:27:06

标签: javascript wordpress amazon-web-services continuous-deployment gatsby

我是gatsby的新手。我们正在使用wordpress作为后端。我们正在使用AWS Amplify服务来部署构建。 Gatsby构建在本地生成,但是构建在AWS Amplify服务中反复失败。 Gatsby-source-wordpress插件抛出错误-提示“找不到Gatsby / Utils”

我试图通过更新插件的最新版本来解决,但无法修复。

这是我在本地的构建脚本:

"scripts": {
    "build": "gatsby build",
    "develop": "gatsby develop",
    "start": "npm run develop",
    "serve": "gatsby serve",
    "test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
  },

这是AWS Amplify中的默认构建设置:

version: 0.1
frontend:
  phases:
    preBuild:
      commands:
        - yarn install
    build:
      commands:
        - yarn run build
  artifacts:
    baseDirectory: public
    files:
      - '**/*'
  cache:
    paths:
      - node_modules/**/*

构建应该成功,但是会显示以下错误:

  

错误插件gatsby-source-wordpress返回错误找不到   模块'gatsby / utils

预先感谢

0 个答案:

没有答案