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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南