17 lines
429 B
JavaScript
17 lines
429 B
JavaScript
const withMarkdoc = require('@markdoc/next.js')
|
|
const { withPlausibleProxy } = require('next-plausible')
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withMarkdoc()({
|
|
swcMinify: true,
|
|
reactStrictMode: true,
|
|
pageExtensions: ['js', 'jsx', 'md'],
|
|
experimental: {
|
|
newNextLinkBehavior: true,
|
|
scrollRestoration: true,
|
|
legacyBrowsers: false,
|
|
},
|
|
})
|
|
|
|
module.exports = withPlausibleProxy()(nextConfig)
|