portfolio/next.config.mjs
r-freeman 4263e32564
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m20s
Dockerisation
2024-08-23 17:53:35 +01:00

27 lines
592 B
JavaScript

import nextMDX from '@next/mdx'
import remarkGfm from 'remark-gfm'
import rehypePrism from '@mapbox/rehype-prism'
/** @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],
rehypePlugins: [rehypePrism],
}
})
export default withMDX(nextConfig)