13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
import mdx from '@next/mdx';
|
|
|
|
const withMDX = mdx({
|
|
extension: /\.mdx?$/,
|
|
options: { },
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ['ts', 'tsx', 'md', 'mdx'],
|
|
};
|
|
|
|
export default withMDX(nextConfig); |