Standard.site landing page built in Next.js
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 419 B view raw
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);