Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Jun 15, 2024
1 parent acf647d commit 763bc6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const client = new GraphQLClient(`${process.env.GRAPHQL_API_URL}/v1/graphql`, {
"x-hasura-admin-secret": process.env.GRAPHQL_ADMIN_SECRET!,
},
});

console.log("client", client);
export default client;
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
const nextConfig = {
output: "standalone",
compress: false,
optimization: {
bundle: false,
minimize: false,
},
};

export default nextConfig;

0 comments on commit 763bc6d

Please sign in to comment.