www/next.config.mjs
Xe Iaso 7c6effc66e
Some checks failed
Gitea Actions CI / Build and deploy (push) Failing after 57s
Tests / Build and deploy (push) Failing after 16s
updates
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-01-12 12:32:08 -05:00

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));