I have deployed react application on Azure app service and I need to access application settings from environment variable. I have checked using kudu using following command and its showing application setting output of-
node --print 'process.env'
but when I am trying to access that from react code the object has changed and process.env its showing different value.
console.log(process.env)
Thanks, Shraddha Agrawal
Append application setting key with 'REACT_APP_'.