Skip to content

Commit

Permalink
Update index.mdx
Browse files Browse the repository at this point in the history
Updated docs to remove `reactStrictMode: true, swcMinify: true`as they default to true as of Next.js version 13 and up.
  • Loading branch information
thomaskokholm authored Jan 3, 2024
1 parent e2927a7 commit a1578b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/100-getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
Expand Down

0 comments on commit a1578b0

Please sign in to comment.