18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
devIndicators: false,
|
|
experimental: {
|
|
externalDir: true
|
|
},
|
|
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"]
|
|
};
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
const withMDX = createMDX();
|
|
|
|
export default withNextIntl(withMDX(nextConfig));
|