Hello!
I have three applications within a monorepo, each with its own environments: dev, qa, demo, and prod. These three applications share a common feature flag, and it is crucial that the flag has the same name across all applications. This ensures easier maintainability and a consistent implementation at the code level.
I would like to know if it is possible to reuse this flag across all three applications while being able to enable/disable it independently for each application and each environment within those applications.
If this is possible, I would appreciate guidance on the steps I should follow and recommendations on how to configure the SDKs to properly support all three applications and their respective environments.
Thanks!