12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- const withMDX = require('@next/mdx')({
- extension: /\.mdx?$/,
- options: {
-
-
-
- remarkPlugins: [],
- rehypePlugins: [],
-
-
- },
- })
- const nextConfig = {
- productionBrowserSourceMaps: false,
-
- pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
- experimental: {
- appDir: true,
- },
-
- eslint: {
-
-
- ignoreDuringBuilds: true,
- },
- typescript: {
-
- ignoreBuildErrors: true,
- },
- async redirects() {
- return [
- {
- source: '/',
- destination: '/apps',
- permanent: false,
- },
- ]
- },
- }
- module.exports = withMDX(nextConfig)
|