mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
450 B
18 lines
450 B
/** @type {import('next').NextConfig} */
|
|
|
|
const withMDX = require('@next/mdx')({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins: [],
|
|
rehypePlugins: []
|
|
// If you use `MDXProvider`, uncomment the following line.
|
|
// providerImportSource: "@mdx-js/react",
|
|
}
|
|
});
|
|
|
|
module.exports = withMDX({
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
// Append the default value with md extensions
|
|
pageExtensions: ['ts', 'tsx', 'md', 'mdx']
|
|
});
|
|
|