Skip to content

Commit

Permalink
fix(console): force dev feature enabled false
Browse files Browse the repository at this point in the history
force dev feature enabled false
  • Loading branch information
simeng-li committed Apr 18, 2024
1 parent c6adede commit 895c62b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/console/src/consts/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ 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 =
!isProduction || yes(process.env.DEV_FEATURES_ENABLED) || yes(process.env.INTEGRATION_TEST);
export const isDevFeaturesEnabled = false;

0 comments on commit 895c62b

Please sign in to comment.