mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 21:39:49 +00:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
unoptimized: true
|
|
}
|
|
};
|
|
|
|
export default withMDX(config);
|