www/next.config.mjs

24 lines
537 B
JavaScript
Raw Normal View History

2024-07-01 10:28:41 -04:00
/** @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/**',
},
],
},
};
2024-07-01 10:28:41 -04:00
const withMDX = createMDX({});
export default withContentCollections(withMDX(nextConfig));