gpt4 book ai didi

reactjs - 创建 React 应用程序 : using environment variables in index. html

转载 作者:行者123 更新时间:2023-12-03 13:05:25 26 4
gpt4 key购买 nike

有没有办法注入(inject)环境变量,例如REACT_APP_MY_APIindex.html 文件中?

根据this ,它可以完成,但我似乎无法让它发挥作用。

.env

REACT_APP_MY_API=https://something.com

index.html

<script type="text/javascript">
console.log("%REACT_APP_MY_API%") // undefined
console.log("%NODE_ENV%") // development
</script>

最佳答案

我刚刚尝试了(几乎)新的 CRA 设置,它有效。

<head>
<title>React App</title>
<script type="text/javascript">
console.log("%REACT_APP_TEST%") // OK
console.log("%NODE_ENV%") // development
</script>
</head>

您是否尝试重新启动服务器?我刚刚尝试使用您的示例更改测试变量,如果您重新启动开发服务器,它就会起作用。

正如有人在评论中指出的,CRA的官方文档有a section关于这一点。

关于reactjs - 创建 React 应用程序 : using environment variables in index. html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51744375/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com