/** @type {import('next').NextConfig} */ import { withContentCollections } from "@content-collections/next"; import createMDX from '@next/mdx'; const nextConfig = { pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'], output: "standalone", images: { remotePatterns: [ { protocol: 'https', hostname: 'cdn.xeiaso.net', port: '', pathname: '/file/christine-static/**', }, ], }, }; const withMDX = createMDX({}); export default withContentCollections(withMDX(nextConfig));