15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ["amical.ai"],
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|