Migrated project from Quartz to Next.js with Fumadocs

This commit is contained in:
Jonas List 2025-04-14 22:08:00 +02:00
parent d0e8fca4a6
commit ff60b8afc1
383 changed files with 8990 additions and 152443 deletions

12
next.config.mjs Normal file
View file

@ -0,0 +1,12 @@
import { createMDX } from 'fumadocs-mdx/next';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
output: "export",
reactStrictMode: true,
images: { unoptimized: true }
};
export default withMDX(config);