Skip to content

Commit

Permalink
fix: set default enable_graphiql to true
Browse files Browse the repository at this point in the history
  • Loading branch information
seanes committed Jan 30, 2025
1 parent ae55aa7 commit ed62126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bff/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const envVariables = z.object({
MIGRATION_RUN: z.preprocess(stringToBoolean, z.boolean().default(false)),
DIALOGPORTEN_URL: z.string().default('https://altinn-dev-api.azure-api.net/dialogporten/graphql'),
CONTAINER_APP_REPLICA_NAME: z.string().default(''),
ENABLE_GRAPHIQL: z.preprocess(stringToBoolean, z.boolean().default(false)),
ENABLE_GRAPHIQL: z.preprocess(stringToBoolean, z.boolean().default(true)),
});

const env = envVariables.parse(process.env);
Expand Down

0 comments on commit ed62126

Please sign in to comment.