I recently want to use feature flags in production for maintenance or marketing. It's convenient to hide new feature without deploy.
As documentation, they can only affect as users explicitly enables them following recommended or shared url with query parameters. It doesn't look suitable for our purpose.
We can do by combining with the external store like vercel edge config, but it's a little expensive for us to read data from them by our all users, as we did an experiment to use it in advance because a few Million requests come to our service per day. The alternatives may have bottleneck of latency.
I want the feature to force user headers to be appended x-vercel-flag without code modification from vercel if administrator requires.