mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 09:00:53 +08:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default withMDX(config);
|