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
asked 5 years ago252 views
4 Answers
0

Also, builds sometimes take up to 30 mins.

kay33
answered 5 years ago
0

Now my app is not updating at all.

kay33
answered 5 years ago
0

cache size issue. see here for workaround:

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

kay33
answered 5 years ago
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
answered 9 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions