我将create-react-app
与react-script
版本1.0.7
,node 6.10.2
在我的项目根目录中,我创建了.env
:
API_ENDPOINT=https://dev-api.com
在src/common/api.js
,我有:
import axios from 'axios';
const apiEndpoint = process.env.API_ENDPOINT;
axios.defaults.baseURL = apiEndpoint || 'https://prod-api.com';
使用yarn run build
构建项目后,我从浏览器控制台检查api调用,它始终为https://prod-api.com
。
你有什么想法吗?感谢