-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
43 lines (39 loc) · 1 KB
/
next.config.js
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
/** @type {import('next').NextConfig} */
const childProcess = require('child_process')
/* eslint-disable import/order */
const withMDX = require('@next/mdx')({
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 = {
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,
}
module.exports = () => plugins.reduce((acc, next) => next(acc), nextConfig)