diff --git a/lib/client.ts b/lib/client.ts index 0160bf0..e07ca74 100644 --- a/lib/client.ts +++ b/lib/client.ts @@ -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; diff --git a/next.config.mjs b/next.config.mjs index 5e453a0..e57aed1 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -2,6 +2,10 @@ const nextConfig = { output: "standalone", compress: false, + optimization: { + bundle: false, + minimize: false, + }, }; export default nextConfig;