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