portfolio/next.config.mjs
r-freeman 56093b2629
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 1m56s
Updated post / added support for diagrams
2024-09-17 15:04:30 +01:00

28 lines
662 B
JavaScript

import nextMDX from '@next/mdx'
import remarkGfm from 'remark-gfm'
import rehypePrism from '@mapbox/rehype-prism'
import {remarkMermaid} from '@theguild/remark-mermaid'
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['jsx', 'js', 'tsx', 'ts', 'mdx'],
images: {
remotePatterns: [{
protocol: 'https',
hostname: 'i.scdn.co',
port: ''
}]
},
output: 'standalone'
}
const withMDX = nextMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [remarkGfm, remarkMermaid],
rehypePlugins: [rehypePrism],
}
})
export default withMDX(nextConfig)