spaCy/website/next.config.js

13 lines
275 B
JavaScript
Raw Normal View History

const withMDX = require("@next/mdx")({
extension: /\.mdx?$/,
});
2022-11-10 02:22:01 +03:00
2022-11-10 02:18:01 +03:00
/** @type {import('next').NextConfig} */
2022-11-10 02:22:01 +03:00
const nextConfig = withMDX({
2022-11-10 02:18:01 +03:00
reactStrictMode: true,
swcMinify: true,
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
2022-11-10 02:22:01 +03:00
});
2022-11-10 02:18:01 +03:00
2022-11-10 02:22:01 +03:00
module.exports = nextConfig;