/** @type {import('next').NextConfig} */ const withMDX = require('@next/mdx')({ extension: /\.mdx?$/, options: { remarkPlugins: [], rehypePlugins: [], }, }); module.exports = withMDX({ reactStrictMode: true, pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'], swcMinify: true, experimental: { concurrentFeatures: true, // runtime: 'nodejs', outputStandalone: true, }, });