mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-12-19 00:09:24 +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);
|