Last active
February 12, 2023 18:53
-
-
Save levchenkod/f0c04256cd6b61e50f9b1ca4e0e4970c to your computer and use it in GitHub Desktop.
NextJS config to ignore test files inside /page dir
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @type {import('next').NextConfig} */ | |
const nextConfig = { | |
reactStrictMode: true, | |
pageExtensions: [ | |
'mdx', | |
'md', | |
'jsx', | |
'tsx', | |
'ts' | |
], | |
} | |
module.exports = nextConfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment