Files
pfadi-bussle/next.config.mjs
2025-03-30 21:57:57 +02:00

30 lines
681 B
JavaScript

import { withAxiom } from 'next-axiom'
import createMDX from '@next/mdx'
/** @type {import('next').NextConfig} */
const nextConfig = {
// Configure `pageExtensions`` to include MDX files
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
// Optionally, add any other Next.js config below
async redirects() {
return [
// {
// source: '/admin',
// destination: '/nope',
// permanent: true,
// },
]
},
}
const withMDX = createMDX({
// Add markdown plugins here, as desired
options: {
remarkPlugins: [],
rehypePlugins: [],
},
})
// Merge MDX config with Next.js config
export default withMDX(nextConfig)