Skip to content

Commit

Permalink
docs: fix code out of the code block (#69228)
Browse files Browse the repository at this point in the history
The PR moves `module.exports = nextConfig` into the code block. This was
introduced in #69161

/cc @samcx
  • Loading branch information
AhmedBaset authored Aug 23, 2024
1 parent 9e8266a commit ba99599
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const nextConfig: NextConfig = {
useLightningcss: true,
},
}

export default nextConfig
```

```js filename="next.config.js"
Expand All @@ -23,6 +25,6 @@ const nextConfig = {
useLightningcss: true,
},
}
```

module.exports = nextConfig
```

0 comments on commit ba99599

Please sign in to comment.