mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-24 23:28:35 +08:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default withMDX(config);
|