部署错误发生意外错误:“ESOCKETIMEDOUT”.应用服务Azure

omjgkv6w  于 2022-12-14  发布在  其他
关注(0)|答案(3)|浏览(287)

我在尝试使用visual studio azure应用程序服务扩展将react应用程序部署到azure应用程序服务时遇到了一个大问题,我收到了此错误

info There appears to be trouble with your network connection. Retrying...
error An unexpected error occurred: "https://registry.yarnpkg.com/date-fns/-/date-fns-2.0.0-alpha.27.tgz: ESOCKETTIMEDOUT".

我使用Yarn,我读到增加网络超时也许可以解决这个问题。但我怎么能做到呢?

tzxcd3kk

tzxcd3kk1#

我正在使用Yarn,我读到增加网络超时也许可以解决这个问题。但我怎么能做到呢?
您可以尝试在您的终端中运行它:

$ yarn install --network-timeout 1000000

同时尝试通过运行以下cmd清除cache

$ yarn cache clean
$ yarn // to install dependencies, no need for "yarn install"

有关详细信息,请参阅以下链接:
. yarn is having troubles with the network connection | SO THREAD中的一个或多个。
文件

clj7thdc

clj7thdc2#

尝试不在Azure上运行生成。请在发布时回答“否”来执行此操作。

是否已进行设置以在Azure上生成(回答为是)..通过删除以下文件撤消
.vscode\settings.json
3、展开

sqxo8psd

sqxo8psd3#

创建文件.yarnrc,并写入文件:
网络超时1000000
保存文件并使用该文件部署应用程序

相关问题