okapi/docs/next.config.js
2022-09-10 03:06:35 +00:00

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)