2024-07-01 10:28:41 -04:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-09-17 19:45:30 -04:00
|
|
|
|
2024-09-20 13:41:03 -04:00
|
|
|
import { withContentCollections } from "@content-collections/next";
|
2025-01-12 12:32:08 -05:00
|
|
|
import createMDX from '@next/mdx';
|
2024-09-20 13:41:03 -04:00
|
|
|
|
2024-09-17 19:45:30 -04:00
|
|
|
const nextConfig = {
|
2025-01-12 12:32:08 -05:00
|
|
|
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
|
2024-09-17 19:45:30 -04:00
|
|
|
output: "standalone",
|
2024-09-20 13:41:03 -04:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: 'cdn.xeiaso.net',
|
|
|
|
port: '',
|
|
|
|
pathname: '/file/christine-static/**',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-09-17 19:45:30 -04:00
|
|
|
};
|
2024-07-01 10:28:41 -04:00
|
|
|
|
2025-01-12 12:32:08 -05:00
|
|
|
const withMDX = createMDX({});
|
|
|
|
|
|
|
|
export default withContentCollections(withMDX(nextConfig));
|