mirror of
https://github.com/logto-io/logto.git
synced 2025-03-10 22:22:45 -05:00
fix(console): revert the isDevFeaturesEnabled changes in console (#5755)
revert the isDevFeatureEnabled hot fix
This commit is contained in:
parent
bb4382e0a8
commit
45fd3b22ff
1 changed files with 2 additions and 1 deletions
|
@ -4,4 +4,5 @@ export const isProduction = process.env.NODE_ENV === 'production';
|
|||
export const isCloud = yes(process.env.IS_CLOUD);
|
||||
export const adminEndpoint = process.env.ADMIN_ENDPOINT;
|
||||
|
||||
export const isDevFeaturesEnabled: boolean = yes(process.env.INTEGRATION_TEST);
|
||||
export const isDevFeaturesEnabled =
|
||||
!isProduction || yes(process.env.DEV_FEATURES_ENABLED) || yes(process.env.INTEGRATION_TEST);
|
||||
|
|
Loading…
Add table
Reference in a new issue