We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed7dd9 commit f9cb00aCopy full SHA for f9cb00a
src/config.ts
@@ -1,16 +1,14 @@
1
export type Config = {
2
port?: number;
3
graphql?: {
4
- debug?: boolean;
5
- playground?: boolean;
+ graphiql?: boolean;
6
};
7
}
8
9
// Define environment variables
10
export default () => ({
11
port: process.env.PORT || 3000,
12
graphql: {
13
- debug: process.env.GRAPHQL_DEBUG || false,
14
- playground: process.env.GRAPHQL_PLAYGROUND || false,
+ graphiql: process.env.GRAPHQL_PLAYGROUND || false,
15
},
16
} as Config);
0 commit comments