From aebb20b6551414e603b8ea99e403f4fdd25a4ade Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Tue, 1 Apr 2025 22:12:51 +0200 Subject: [PATCH] clean next.config.mjs --- next.config.mjs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 32c7b75..8e3f5c7 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,29 +1,15 @@ -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)