diff --git a/apps/nextjs-example/next.config.js b/apps/nextjs-example/next.config.js index 24f4ee6..3c16e7e 100644 --- a/apps/nextjs-example/next.config.js +++ b/apps/nextjs-example/next.config.js @@ -1,6 +1,16 @@ import { withContentlayer } from "next-contentlayer"; /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + reactStrictMode: true, + webpack: (config) => { + // TODO: Remove when https://github.com/vercel/next.js/issues/33693 gets resolved + config.infrastructureLogging = { + level: "error", + }; + + return config; + }, +}; export default withContentlayer(nextConfig);