Added Blog Page and Housekeeping

This commit is contained in:
Ahmad 2024-11-17 16:28:51 -05:00
parent db4bf103c3
commit d32415232e
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
18 changed files with 6860 additions and 769 deletions

View file

@ -1,8 +1,12 @@
import type { NextConfig } from 'next';
import { withContentCollections } from '@content-collections/next';
import createMDX from '@next/mdx';
const nextConfig: NextConfig = {
experimental: {
reactCompiler: true,
mdxRs: true,
},
images: {
remotePatterns: [
@ -16,6 +20,9 @@ const nextConfig: NextConfig = {
},
],
},
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
};
export default nextConfig;
const withMDX = createMDX({});
export default withContentCollections(withMDX(nextConfig));