free.technology/next.config.js

19 lines
396 B
JavaScript
Raw Normal View History

2023-10-19 01:08:20 +09:00
import remarkGfm from 'remark-gfm'
import createMDX from '@next/mdx'
const withMDX = createMDX({
// Add markdown plugins here, as desired
options: {
remarkPlugins: [remarkGfm],
rehypePlugins: [],
},
})
2023-10-18 00:12:25 +09:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
}
2023-10-19 01:08:20 +09:00
export default withMDX(nextConfig)