mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-06-17 19:24:23 +00:00
29232afadc
ci: set up github actions
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);
|