我需要在单独的服务器上作为独立的React应用程序运行前端UI(并非与所有mlflow python服务器和程序包一起运行)。但是当我运行生产版本时,出现以下错误:
您需要启用JavaScript才能运行此应用。
复制:
git clone https://github.com/mlflow/mlflow.git
cd mlflow/mlflow/server/js
在开发模式下,“ npm start”工作正常:
npm install
npm start
但是当我在生产环境中运行它时,我遇到了以上错误。
npm install
npm install -g serve
npm run build
serve -s build
我在论坛上尝试了很多搜索,包括以下内容: I am getting error in console "You need to enable JavaScript to run this app." reactjs。 但是我没有设法使它起作用。