raj.how/next.config.js

11 lines
303 B
JavaScript
Raw Normal View History

2024-01-06 21:07:35 +05:30
const withMDX = require("@next/mdx")();
2023-10-27 16:48:26 +05:30
/** @type {import('next').NextConfig} */
2024-01-06 21:07:35 +05:30
const nextConfig = {
// Configure `pageExtensions` to include MDX files
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
// Optionally, add any other Next.js config below
};
2023-10-27 16:48:26 +05:30
2024-01-06 21:07:35 +05:30
module.exports = withMDX(nextConfig);