Infrastructure setup

This commit is contained in:
adilallo
2025-09-04 10:27:29 -06:00
parent 0ee9725f3f
commit 3d6d4ed251
9 changed files with 2709 additions and 12 deletions
+10 -1
View File
@@ -1,3 +1,5 @@
import createMDX from "@next/mdx";
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
@@ -13,4 +15,11 @@ const nextConfig = {
},
};
export default nextConfig;
const withMDX = createMDX({
options: {
remarkPlugins: [],
rehypePlugins: [],
},
});
export default withMDX(nextConfig);