Frontend fails but still update

0

Hello,

The frontend build fails even though there are no errors, only warnings for the npm install. I confirmed that build is working via CLI (using create react app). Also, confirmed my front end changes are deployed.

It seems like Amplify Console is reporting a failed build when in reality it worked.

kay33
已提问 5 年前257 查看次数
4 回答
0

Also, builds sometimes take up to 30 mins.

kay33
已回答 5 年前
0

Now my app is not updating at all.

kay33
已回答 5 年前
0

cache size issue. see here for workaround:

https://github.com/aws-amplify/amplify-cli/issues/1415

kay33
已回答 5 年前
0

You could solve it by removing any override package version in Amplify build settings.

You might add npm i -g @aws-amplify/cli as a preBuild command, which forces a reset in the cache.

version: 1
backend:
  phases:
    preBuild:
      commands:
        - npm i -g @aws-amplify/cli
    build:
      commands:
        - '# Execute Amplify CLI with the helper script'
        - amplifyPush --simple
frontend:
  phases:
    preBuild:
      commands:
        - npm ci
    build:
      commands:
        - npm run build
  artifacts:
    baseDirectory: .next
    files:
      - '**/*'
  cache:
    paths:
      - node_modules/**/*
AWS
已回答 9 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则