-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.ts
50 lines (42 loc) · 1.11 KB
/
next.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import nextMdx from '@next/mdx'
import type { NextConfig } from 'next'
import childProcess from 'node:child_process'
/** @type {import('next').NextConfig} */
const withMDX = nextMdx({
extension: /\.mdx?$/,
options: {
rehypePlugins: [],
remarkPlugins: [],
// If you use `MDXProvider`, uncomment the following line.
// providerImportSource: "@mdx-js/react",
},
})
let revision
try {
revision = childProcess
.execSync('git rev-parse HEAD')
.toString()
.trim()
.substring(0, 5)
} catch {
revision = (
process.env.VERCEL_GIT_COMMIT_SHA || 'fallback_revision'
).substring(0, 5)
}
const plugins = [withMDX]
const nextConfig: NextConfig = {
env: {
NEXT_PUBLIC_REVISION: revision,
},
eslint: {
ignoreDuringBuilds: true,
},
experimental: { esmExternals: true, mdxRs: true },
generateBuildId: async () => revision,
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
poweredByHeader: false,
reactStrictMode: true,
}
const configWithPlugins = (): NextConfig =>
plugins.reduce<NextConfig>((acc, next) => next(acc), nextConfig)
export default configWithPlugins