mirror of
https://github.com/acid-info/free.technology.git
synced 2025-02-22 22:48:11 +00:00
10 lines
272 B
JavaScript
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) |