mirror of
https://github.com/dathere/ckanaction.git
synced 2025-12-19 08:49:26 +00:00
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
devIndicators: false,
|
|
transpilePackages: ["shiki"]
|
|
};
|
|
|
|
export default withMDX(config);
|