mirror of
https://github.com/runyanjake/cooking.git
synced 2026-03-26 09:53:17 -07:00
18 lines
354 B
TypeScript
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);
|