A social knowledge tool for researchers built on ATProto
at main 458 B view raw
1import createMDX from '@next/mdx'; 2 3/** @type {import('next').NextConfig} */ 4const nextConfig = { 5 reactStrictMode: false, 6 7 // Configure `pageExtensions` to include markdown and MDX files 8 pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'], 9 // Optionally, add any other Next.js config below 10}; 11 12const withMDX = createMDX({ 13 // Add markdown plugins here, as desired 14}); 15 16// Merge MDX config with Next.js config 17export default withMDX(nextConfig);