Skip to content

Commit

Permalink
Ignore Next.js type checking
Browse files Browse the repository at this point in the history
We already use TypeScript to do this manually.
  • Loading branch information
remcohaszing committed Jul 2, 2024
1 parent 3944549 commit 4bc553c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ const withMDX = nextMDX({
})

export default withMDX({
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx']
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
typescript: {
ignoreBuildErrors: true
}
})

0 comments on commit 4bc553c

Please sign in to comment.