mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 17:54:39 +03:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
const withMDX = require("@next/mdx")();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withMDX({
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
});
|
|
|
|
module.exports = nextConfig;
|