You are currently viewing documentation for the canary channel of Next.js.
pageExtensions
By default, Next.js accepts files with the following extensions: .tsx
, .ts
, .jsx
, .js
. This can be modified to allow other extensions like markdown (.md
, .mdx
).
next.config.js
const withMDX = require('@next/mdx')()
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
}
module.exports = withMDX(nextConfig)
Was this helpful?