mirror of
https://github.com/explosion/spaCy.git
synced 2025-03-14 23:22:19 +03:00
19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
const withMDX = require('@next/mdx')({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
providerImportSource: '@mdx-js/react',
|
|
},
|
|
experimental: {
|
|
mdxRs: true,
|
|
},
|
|
})
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withMDX({
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
|
|
})
|
|
|
|
module.exports = nextConfig
|