create-react-app脚手架运行时出现没有bundle.js?
这是什么意思?
更新:
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;
}
}
要怎么配置才能解决上面的错误呢?