我的VM无法正常运行create-react-app的本地服务器刷新

时间:2020-06-07 11:32:42

标签: javascript reactjs typescript create-react-app

在我的虚拟机中无法正常运行create-react-app的本地服务器刷新:更新代码时,服务器未自动更新。

我使用Ubuntu作为OS,使用VSCode编写代码,并使用VSCode终端在本地运行应用程序。

本地启动命令: npm start

1 个答案:

答案 0 :(得分:0)

我创建了一个.env,并向其中添加CHOKIDAR_USEPOLLING = true。 为什么?这样可以确保下次运行npm时,观察者根据需要在VM内使用轮询模式。

从这里得到这个: Development server of create-react-app does not auto refresh

然后回答。