小编典典

创建反应应用程序不拿起.env文件?

reactjs

我正在使用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


阅读 210

收藏
2020-07-22

共1个答案

小编典典

使用create-react-app,您需要REACT_APP_在变量名之前添加前缀才能访问它。

例:

REACT_APP_API_URL=http://localhost:3000/api
REACT_APP_CALLBACK_URL=http://localhost:3005/callback

在这里查看更多信息

2020-07-22