add postmortem (#241)

This commit is contained in:
KM Koushik
2025-09-19 22:09:54 +10:00
committed by GitHub
parent 2fa8c1b600
commit 1226e89aaf
6 changed files with 300 additions and 954 deletions

View File

@@ -1,3 +1,5 @@
import createMDX from "@next/mdx";
/** @type {import("next").NextConfig} */
const config = {
// Use static export in production by default; keep dev server dynamic
@@ -6,6 +8,11 @@ const config = {
// Required for static export if using images
unoptimized: true,
},
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
};
export default config;
const withMDX = createMDX({
extension: /\.(md|mdx)$/,
});
export default withMDX(config);