Files
mainasara.dev/next.config.ts
neutrino2211 e961d4d88b update seo
2025-09-20 00:56:08 +01:00

15 lines
402 B
TypeScript

import type { NextConfig } from "next";
import createMDX from "@next/mdx";
const nextConfig: NextConfig = {
// Configure `pageExtensions` to include markdown and MDX files
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
// Optionally, add any other Next.js config below
};
const withMDX = createMDX({
// Add markdown plugins here, as desired
});
export default withMDX(nextConfig);