nonszy-space/next.config.mjs
2025-06-28 06:42:16 +07:00

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);