In my React application I use some environmental variables that are going to be changed from time to time. I noticed that after running 'npm run build', all environmental paths get hardcoded. E.g. const server_address = process.env.REACT_APP_SERVER_ADDRESS; becomes REACT_APP_SERVER_ADDRESS:"http://192.168.42.135:3000
Is there any way to still use the environmental variables in deployment after the build?
process.env, which is only accessible server-side, once you build your app that runs client-side.