logos-ordinals-dashboard/next.config.js

22 lines
499 B
JavaScript
Raw Permalink Normal View History

2024-09-10 15:58:57 +00:00
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: {
2024-09-27 15:41:52 +00:00
domains: ['avatars.githubusercontent.com', 'ordinal-operators.s3.amazonaws.com'],
2024-09-10 15:58:57 +00:00
},
}
export default withMDX(nextConfig)