mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
r-freeman
1cbe4f6424
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 1m47s
27 lines
592 B
JavaScript
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)
|