site/next.config.ts
Dariusz Niemczyk 4bc8882620
Some checks failed
/ deploy (push) Failing after 1s
feat: support markdown and add "privacy policy"
2025-02-15 01:11:16 +01:00

15 lines
348 B
TypeScript

import createMDX from "@next/mdx";
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
};
const withMDX = createMDX({
// Add markdown plugins here, as desired
});
// Merge MDX config with Next.js config
export default withMDX(nextConfig);