anchor/docs/next.config.js

17 lines
438 B
JavaScript
Raw Normal View History

2022-06-24 11:56:29 -07:00
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 },
2022-06-24 11:56:29 -07:00
},
})
module.exports = withPlausibleProxy()(nextConfig)