gpt4 book ai didi

javascript - 放大使 `Failed to load resource: the server responded with a status of 400` 错误

转载 作者:行者123 更新时间:2023-12-04 13:54:17 27 4
gpt4 key购买 nike

我在 Amplify 上遇到了这个错误,我完成了构建。

Failed to load resource: the server responded with a status of 400
manifest.json:1

该系统可以在本地环境中工作。本地 env 的 Package.json 脚本是这样的。
  .......
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "./node_modules/.bin/eslint --fix --ignore-path .gitignore ."
},
.......
我的 amplify.xml 如下。
version: 1
frontend:
phases:
preBuild:
commands:
- nvm install 14.15.0
- nvm use 14.15.0
- yarn install
build:
commands:
- nvm install 14.15.0
- nvm use 14.15.0
- node -v
- yarn run build
artifacts:
baseDirectory: public
files:
- '**/*'
cache:
paths:
- 'node_modules/**/*'
屏幕完全空白。
enter image description here
有没有人有同样的烦恼?

最佳答案

我遇到了同样的问题,花了几个小时进行故障排除后,结果证明是 Amplify CI/CD 构建配置问题。
将存储库连接到 Amplify 应用程序时,系统会提示您编辑 amplify.yaml 文件中的build设置。无论出于何种原因,baseDirectory 的默认值设置为 public .
下载文件,将其放在存储库根目录中,然后更改:

artifacts:
baseDirectory: public
artifacts:
baseDirectory: build
提交,推送,重新连接分支,它应该可以工作。

关于javascript - 放大使 `Failed to load resource: the server responded with a status of 400` 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65401470/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com