我正在使用create react app引导我的应用程序。
我已经添加了两个.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: "" }
我尝试了不同的方法,但只是没有在开发文件中获取Veriable,我在做什么错?!
指令结构为:
/.env.development
/src/index.js
Package.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
在最新的react-scripts(3.2.0)中,说的很简单
在您的.env或.env.development文件(..etc)中,该文件应该位于根文件夹中。
它不能与REACT_APP前缀一起使用(我认为文档已过时),并且不需要任何额外的npm包(反应脚本已经包含dotenv 6.2.0)