Skip to content

Instantly share code, notes, and snippets.

@levchenkod
Last active February 12, 2023 18:53
Show Gist options
  • Save levchenkod/f0c04256cd6b61e50f9b1ca4e0e4970c to your computer and use it in GitHub Desktop.
Save levchenkod/f0c04256cd6b61e50f9b1ca4e0e4970c to your computer and use it in GitHub Desktop.
NextJS config to ignore test files inside /page dir
/** @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