pageExtensions
Source URL: https://nextjs.org/docs/pages/api-reference/config/next-config-js/pageExtensions
pageExtensions
Section titled “pageExtensions”You can extend the default Page extensions (.tsx, .ts, .jsx, .js) used by Next.js. Inside next.config.js, add the pageExtensions config:
module.exports = { pageExtensions: ['mdx', 'md', 'jsx', 'js', 'tsx', 'ts'],}Changing these values affects all Next.js pages, including the following:
proxy.jsinstrumentation.jspages/_document.jspages/_app.jspages/api/
For example, if you reconfigure .ts page extensions to .page.ts, you would need to rename pages like proxy.page.ts, instrumentation.page.ts, _app.page.ts.
Including non-page files in the pages directory
Section titled “Including non-page files in the pages directory”You can colocate test files or other files used by components in the pages directory. Inside next.config.js, add the pageExtensions config:
module.exports = { pageExtensions: ['page.tsx', 'page.ts', 'page.jsx', 'page.js'],}