如何在我的应用程序中将环境变量从.env文件注入到web.config文件中?

时间:2019-05-17 15:32:14

标签: reactjs web-config environment-variables

我不知道在web.config文件中使用.env变量的正确语法。或者,即使有可能。 我有一个变量REACT_APP_URL = www.dev.contoso.com,一个用于产品www.contoso.com 我想将其注入模式和重定向URL。因此,如果domain是dev,则将其重定向到dev,如果其prod,则将重定向到prod。 `

<conditions>
  <add input="{HTTP_HOST}" negate="true" pattern="^www\.contoso\.com$" />
</conditions>
<action type="Redirect" url="https://www.constoso.com/{R:0}" redirectType="Permanent" />

`

0 个答案:

没有答案