free.technology/next.config.js
2023-10-18 00:12:25 +09:00

10 lines
272 B
JavaScript

const withMDX = require('@next/mdx')()
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
// Optionally, add any other Next.js config below
}
module.exports = withMDX(nextConfig)