mirror of
https://github.com/aljazceru/nostr-how.git
synced 2025-12-17 14:24:25 +01:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
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)
|