-1

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

Agrawal Shraddha
  • 734
  • 1
  • 5
  • 18

1 Answers1

-1

Append application setting key with 'REACT_APP_'.

Agrawal Shraddha
  • 734
  • 1
  • 5
  • 18