mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
42 lines
898 B
JavaScript
42 lines
898 B
JavaScript
import MDX from '@next/mdx'
|
|
import PWA from 'next-pwa'
|
|
|
|
import remarkPlugins from './plugins/index.mjs'
|
|
|
|
const withMDX = MDX({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins,
|
|
providerImportSource: '@mdx-js/react',
|
|
},
|
|
experimental: {
|
|
mdxRs: true,
|
|
},
|
|
})
|
|
|
|
const withPWA = PWA({
|
|
dest: 'public',
|
|
disable: process.env.NODE_ENV === 'development',
|
|
})
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withPWA(
|
|
withMDX({
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: { unoptimized: true },
|
|
env: {
|
|
DOCSEARCH_API_KEY: process.env.DOCSEARCH_API_KEY
|
|
}
|
|
})
|
|
)
|
|
|
|
export default nextConfig
|