diff --git a/bun.lockb b/bun.lockb index fec2e3c..90a87f8 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/next.config.mjs b/next.config.mjs index 271399d..d486ac2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,10 @@ +import createMDX from '@next/mdx' + /** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', } -export default nextConfig +const withMDX = createMDX({}) + +export default withMDX(nextConfig) diff --git a/package.json b/package.json index 3ab3afd..b9bb797 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dependencies": { "@headlessui/react": "^2.1.1", "@heroicons/react": "^2.1.4", + "@next/mdx": "^15.1.4", "@tailwindcss/typography": "^0.5.15", "@types/prismjs": "^1.26.5", "clsx": "^2.1.1",