我想在构建之后在根文件夹中配置一个配置文件(JSON)来配置我的应用程序。
喜欢Translation
和API Urls
以及......
我可以使用create react app吗?
答案 0 :(得分:3)
在config.js
目录之外创建json
或src
文件并将其包含在index.html
中
<script src="%PUBLIC_URL%/config.js" type="text/javascript"></script>
在config.js
var BASE_URL = "http://YOUR-URL";
你可以获得像
这样的参数const BASE_URL = window.BASE_URL;
答案 1 :(得分:1)
您可以将JSON文件存储在public/
文件夹中,当您托管Create React App时,它将自动提供此文件。
类似/public/my-configuration-file.json
然后,当您重新启动应用程序时:
localhost:3000/my-configuration-file.json
将为您提供此json文件。