22 lines
478 B
JavaScript
22 lines
478 B
JavaScript
import createMDX from "@next/mdx"
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'media.tenor.com',
|
|
pathname: '/1BCeG1aTiBAAAAAd/temptation-stairway-ena.gif'
|
|
}
|
|
]
|
|
},
|
|
output: 'standalone',
|
|
productionBrowserSourceMaps: false,
|
|
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
|
|
};
|
|
|
|
const withMDX = createMDX()
|
|
|
|
export default withMDX(nextConfig);
|