cooking/next.config.ts
2026-02-08 23:12:47 -08:00

18 lines
354 B
TypeScript

import type { NextConfig } from "next";
import createMDX from '@next/mdx';
const nextConfig: NextConfig = {
reactStrictMode: true,
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
};
const withMDX = createMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [],
rehypePlugins: [],
},
});
export default withMDX(nextConfig);