mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 18:26:30 +03:00
13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
const withMDX = require("@next/mdx")({
|
|
extension: /\.mdx?$/,
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withMDX({
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
|
|
});
|
|
|
|
module.exports = nextConfig;
|