我是新来为我的项目做出反应和设置环境变量的。这是我所做的..
添加 .env-cmdrc.json 如下
{ "development":{ "REACT_APP_BASE_URL": "https://servername:port/" }, "staging":{ "REACT_APP_BASE_URL": "http://servername:port/" }, "local":{ "REACT_APP_BASE_URL": "http://localhost:port/" } }
安装了 npm
npm install env-cmd 或 npm install -g env-cmd
编辑 package.json 如下:
"start:development": "env-cmd -e development react-scripts start", "start:staging": "env-cmd -e staging react-scripts start", "start:local": "env-cmd -e local react-scripts start", "build:development": "env-cmd -e development react-scripts build", "build:staging": "env-cmd -e staging react-scripts build",
试过 - npm run start:development
给了我 env-cmd 错误
又跑了
npm 安装环境-cmd
现在尝试 - npm run start:development
无法在默认路径中找到 .rc 文件:[./.env-cmdrc,./.env-cmdrc.js,./.env-cmdrc.json] 在 getRCFile
我是第一次这样做,将不胜感激任何帮助..我在这里错过了什么..