spaCy/website/next.config.js
2022-12-20 17:46:31 +01:00

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;