const withMarkdoc = require('@markdoc/next.js') /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, pageExtensions: ['js', 'jsx', 'md'], experimental: { scrollRestoration: true, }, } module.exports = withMarkdoc({ tokenizerOptions: { allowComments: true }, })(nextConfig)