J'utilise la variable d'environnement suivante dans mon application créer-réagir:
console.log(process.env.REACT_APP_API_URL) // http://localhost:5555
Cela fonctionne lorsque je lance npm start
en lisant un fichier .env
:
REACT_APP_API_URL=http://localhost:5555
Comment définir une valeur différente, telle que http://localhost:1234
lors de l'exécution de npm run build
?
Ceci est mon fichier package.json
:
{
"name": "webapp",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-scripts": "0.9.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}