spaCy/website/next.config.js

13 lines
280 B
JavaScript
Raw Normal View History

2022-11-10 03:01:24 +03:00
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 03:01:24 +03:00
reactStrictMode: true,
swcMinify: true,
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
})
2022-11-10 02:18:01 +03:00
2022-11-10 03:01:24 +03:00
module.exports = nextConfig