mirror of
https://github.com/acid-info/logos-ordinals-dashboard.git
synced 2025-01-11 22:24:24 +00:00
22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
import createMDX from '@next/mdx'
|
|
import remarkGfm from 'remark-gfm'
|
|
|
|
const withMDX = createMDX({
|
|
// Add markdown plugins here, as desired
|
|
options: {
|
|
remarkPlugins: [remarkGfm],
|
|
rehypePlugins: [],
|
|
},
|
|
})
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
|
|
images: {
|
|
domains: ['avatars.githubusercontent.com', 'ordinal-operators.s3.amazonaws.com'],
|
|
},
|
|
}
|
|
|
|
export default withMDX(nextConfig)
|