DEV Community

Discussion on: Does your UI use "build once" for promoting to environments?

Collapse
 
chrsjxn profile image
Chris Jackson

I don't think we've got a great solution, but all of the configuration we pass into the client app is publishable (eg, stripe publishable keys) or not secret (gateway service URLs for different environments).

Keys and other configuration that needs to be kept out of the browser have to be handled by the services instead

Thread Thread
 
dgreene1 profile image
Dan Greene

Great, yea I think that’s just one of the responsibilities of UI config variables— you gotta keep secrets out of them since they’re available in the source code.