12345678910111213141516 |
- 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: {
- scrollRestoration: true,
- legacyBrowsers: false,
- images: { allowFutureImage: true },
- },
- })
- module.exports = withPlausibleProxy()(nextConfig)
|