forked from
standard.site/standard.site
Standard.site landing page built in Next.js
1import type { NextConfig } from "next";
2import createMDX from '@next/mdx';
3
4const nextConfig: NextConfig = {
5 output: 'export',
6 trailingSlash: true,
7 pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
8};
9
10const withMDX = createMDX({
11 extension: /\.mdx?$/,
12 options: {
13 remarkPlugins: ['remark-frontmatter', 'remark-gfm'],
14 rehypePlugins: ['rehype-slug'],
15 },
16});
17
18export default withMDX(nextConfig);