Skip to content

Commit f9cb00a

Browse files
committed
chore: removed debug config variable
1 parent 0ed7dd9 commit f9cb00a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
export type Config = {
22
port?: number;
33
graphql?: {
4-
debug?: boolean;
5-
playground?: boolean;
4+
graphiql?: boolean;
65
};
76
}
87

98
// Define environment variables
109
export default () => ({
1110
port: process.env.PORT || 3000,
1211
graphql: {
13-
debug: process.env.GRAPHQL_DEBUG || false,
14-
playground: process.env.GRAPHQL_PLAYGROUND || false,
12+
graphiql: process.env.GRAPHQL_PLAYGROUND || false,
1513
},
1614
} as Config);

0 commit comments

Comments
 (0)