This commit is contained in:
neutrino2211
2025-09-19 23:48:00 +01:00
parent 74a383448b
commit 8177a48df1
14 changed files with 1348 additions and 189 deletions

View File

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