24 lines
537 B
JavaScript
24 lines
537 B
JavaScript
/** @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));
|