toggle clients with feature flag

This commit is contained in:
miloschwartz 2025-06-26 15:09:16 -04:00
parent 7bf9cccbf6
commit 8f1cfd8037
No known key found for this signature in database
9 changed files with 87 additions and 42 deletions

View file

@ -95,6 +95,10 @@ export class Config {
? "true"
: "false";
process.env.FLAGS_ENABLE_CLIENTS = parsedConfig.flags?.disable_clients
? "true"
: "false";
this.rawConfig = parsedConfig;
}