create-react-app脚手架运行时出现没有bundle.js?

create-react-app脚手架运行时出现没有bundle.js?

clipboard.png

这是什么意思?

更新:
react运行在http://localhost:3000,可能是配置了nginx反向代理,nginx.conf配置如下:

    server {
        listen       3001;
        server_name  localhost;

                        
        location / {
            proxy_pass http://localhost:3000;
        }


        location /api { 
            proxy_pass  http://192.168.33.3:8080;    
        }  

    }

要怎么配置才能解决上面的错误呢?

阅读 1.2k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题