mirror of
https://github.com/monadicsystems/okapi.git
synced 2024-11-30 10:29:07 +03:00
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
const withMarkdoc = require('@markdoc/next.js')
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
pageExtensions: ['js', 'jsx', 'md'],
|
|
experimental: {
|
|
newNextLinkBehavior: true,
|
|
scrollRestoration: true,
|
|
images: {
|
|
allowFutureImage: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
module.exports = withMarkdoc()(nextConfig)
|