在Azure上提供React应用时出现ENOENT错误

b5buobof  于 2023-10-22  发布在  React
关注(0)|答案(1)|浏览(118)

我有一个React网站托管在Azure上,并成功地提供了页面没有问题。
但是,我经常在Web App日志中收到错误消息,例如:

2021-03-01T15:01:33.957751902Z 15:01:33 0|static-page-server-8080  | [2021-03-01T15:01:33.956Z] 
Error while serving /home/site/wwwroot/build/profile with content-type text/plain : 
ENOENT: no such file or directory, open '/home/site/wwwroot/build/profile'

例如,当我导航到以下位置时会发生此错误:https://www.webaddress.com/account/profile
要明确的是,页面仍然没有问题。为什么我会收到这个错误?我怎么才能阻止它

kxxlusnw

kxxlusnw1#

首先,验证分发文件夹并检查文件index.html,标签必须如下所示

<base href="/">

你的“outputPath”必须像这个“dist”,

"outputPath": "dist",

问候

相关问题