使用 mars/create-react-app-buildpack 从 Heroku 更改拾取配置
Pickup config change from Heroku with mars/create-react-app-buildpack
我目前在我的 Heroku 服务器上部署了 create-react-app
,我正在使用 mars/create-react-app-buildpack
。
我希望能够在 Heroku 上更改 Heroku REACT_APP_
配置变量,并在 React App 中使用它们。
现在,当我调用 git push heroku master
时,它们的配置变量只会被提取一次,这意味着我需要重新部署才能更改配置设置。
有人能找到解决方法吗?
我发现这已经由 @mars/create-react-app-buildpack
使用运行时配置变量处理。
您可以在您的 React 应用中使用它们,如下所示:https://github.com/mikehanssen/create-react-app-buildpack#runtime-configuration.
我目前在我的 Heroku 服务器上部署了 create-react-app
,我正在使用 mars/create-react-app-buildpack
。
我希望能够在 Heroku 上更改 Heroku REACT_APP_
配置变量,并在 React App 中使用它们。
现在,当我调用 git push heroku master
时,它们的配置变量只会被提取一次,这意味着我需要重新部署才能更改配置设置。
有人能找到解决方法吗?
我发现这已经由 @mars/create-react-app-buildpack
使用运行时配置变量处理。
您可以在您的 React 应用中使用它们,如下所示:https://github.com/mikehanssen/create-react-app-buildpack#runtime-configuration.