From a1578b056807f5c78ec9dfb1a13116f3adb1b690 Mon Sep 17 00:00:00 2001 From: Thomas Kokholm Date: Wed, 3 Jan 2024 10:03:49 +0100 Subject: [PATCH] Update index.mdx Updated docs to remove `reactStrictMode: true, swcMinify: true`as they default to true as of Next.js version 13 and up. --- content/docs/100-getting-started/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/100-getting-started/index.mdx b/content/docs/100-getting-started/index.mdx index 5cdc288..41f4b72 100644 --- a/content/docs/100-getting-started/index.mdx +++ b/content/docs/100-getting-started/index.mdx @@ -52,7 +52,7 @@ To hook Contentlayer into the `next dev` and `next build` processes, you'll want const { withContentlayer } = require('next-contentlayer') /** @type {import('next').NextConfig} */ -const nextConfig = { reactStrictMode: true, swcMinify: true } +const nextConfig = { } module.exports = withContentlayer(nextConfig) ```