mirror of
https://github.com/dathere/ckanaction.git
synced 2025-12-18 16:29:25 +00:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
devIndicators: false,
|
|
transpilePackages: ["shiki"],
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/docs/:path*.mdx",
|
|
destination: "/llms.mdx/:path*"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
export default withMDX(config);
|