Skip to content

Commit

Permalink
feat: add mdx support
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Jul 3, 2024
1 parent 87b7f7d commit 6e3fae0
Show file tree
Hide file tree
Showing 9 changed files with 5,757 additions and 884 deletions.
6 changes: 5 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const withMDX = require("@next/mdx")();

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
};

module.exports = nextConfig;
module.exports = withMDX(nextConfig);
Loading

0 comments on commit 6e3fae0

Please sign in to comment.