1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00

chore: bring back variant config (#10608)

This commit is contained in:
Mateusz Kwasniewski 2025-09-03 13:05:36 +02:00 committed by GitHub
parent 0c1fc54d62
commit 9f90603bea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -254,6 +254,20 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_ADD_CONFIGURATION,
false,
),
streaming: {
name: 'disabled',
enabled: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_STREAMING,
false,
),
},
fetchMode: {
name: 'disabled',
enabled: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_FETCH_MODE,
false,
),
},
};
export const defaultExperimentalOptions: IExperimentalOptions = {