feat: complete MDX migration for blog, fix diagram fidelity and refactor styling architecture

This commit is contained in:
2026-02-17 21:36:59 +01:00
parent bff58e7cfa
commit cce6aa0935
75 changed files with 12282 additions and 12227 deletions

View File

@@ -1,7 +1,11 @@
import { withContentlayer } from 'next-contentlayer2';
import withMintelConfig from "@mintel/next-config";
import createMDX from '@next/mdx';
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
reactStrictMode: true,
output: 'standalone',
images: {
@@ -25,4 +29,8 @@ const nextConfig = {
},
};
export default withMintelConfig(nextConfig);
const withMDX = createMDX({
// Add markdown plugins here, as desired
});
export default withContentlayer(withMintelConfig(withMDX(nextConfig)));