Files
PrivyDrop/frontend/next.config.mjs
T
2025-06-12 22:58:01 +08:00

26 lines
469 B
JavaScript

import createMDX from '@next/mdx'
const withMDX = createMDX({
extension: /\.mdx?$/,
options: {
remarkPlugins: [],
rehypePlugins: [],
},
})
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'img.youtube.com',
pathname: '/vi/**',
},
]
},
}
export default withMDX(nextConfig);