mirror of
https://github.com/acid-info/logos-ordinals-dashboard.git
synced 2025-01-27 13:45:01 +00:00
31 lines
721 B
JavaScript
31 lines
721 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 = {
|
|
/* Breaks currently used 'next start' due to:
|
|
* Error: "next start" does not work with "output: export" configuration.
|
|
* Use "npx serve@latest out" instead. */
|
|
output: 'export',
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
|
|
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
|
|
images: {
|
|
// loader: 'imgix',
|
|
domains: ['ordinal-operators.s3.amazonaws.com'],
|
|
},
|
|
}
|
|
|
|
export default withMDX(nextConfig)
|