mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-07 17:05:34 +02:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
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);
|