Skip to content

Add Env variable in react

React

Write every environment variable with prefix REACT_APP_.... e.g.

REACT_APP_URL = http://localhost:8080/

In the jsx file use the variable using

process.env.REACT_APP_URL

Vite

Write every environment variable using prefix VITE_...

VITE_URL = http://localhost:8080/

In the jsx file use the variable using

import.meta.env.VITE_URL

Reference