默认情况下,当我运行“ react-scripts-ts start”时,我可以使用http://localhost:3000/访问我的应用程序,但是我想在开发过程中使用另一个URL http://localhost/myapp/访问我的应用程序。
我只能使用“ PORT”变量来更改端口。是否可以在开发中为URL添加前缀?
我认为我必须使用Nginx重写URL。我尝试以下配置:
location /myapp/ {
proxy_pass http://localhost:3000/;
}
但是index.html
还包含如下URL:<script src="/static/js/bundle.js"></script>
。我无法正确重写这些URL。
任何帮助将不胜感激。