init: add project files

This commit is contained in:
Prad Nukala
2023-09-09 22:30:53 -04:00
commit 4aee94eae5
59 changed files with 20670 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import rehypePrism from '@mapbox/rehype-prism'
import nextMDX from '@next/mdx'
import remarkGfm from 'remark-gfm'
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
}
const withMDX = nextMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [remarkGfm],
rehypePlugins: [rehypePrism],
},
})
export default withMDX(nextConfig)