最佳答案
我使用创建react应用程序来引导我的应用程序。
我在根目录中添加了两个.env
文件.env.development
和.env.production
。
我的.env.development
包括:
API_URL=http://localhost:3000/api
CALLBACK_URL=http://localhost:3005/callback
当我运行我的应用程序使用react-scripts start
和控制台process.env
它吐出
{ NODE_ENV: "development", PUBLIC_URL: "" }
我尝试了不同的事情,但它只是不拾起我的开发文件,我做错了什么?!
领导结构为:
/.env.development
/src/index.js
包中。Json脚本是:
"start": "export PORT=3005; npm-run-all --parallel server:start client:start",
"client:start": "export PORT=3005; react-scripts start",
"server:start": "node server.js",
"build": "react-scripts build",
编辑:
@jamcreencia正确地指出了我的变量应该加上前缀与REACT_APP
。
编辑2
如果我将文件命名为.env
,它就可以工作,但如果我使用.env.development
或.end.production
则不行