www/next.config.mjs

20 lines
402 B
JavaScript
Raw Normal View History

2024-07-01 10:28:41 -04:00
/** @type {import('next').NextConfig} */
import { withContentCollections } from "@content-collections/next";
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.xeiaso.net',
port: '',
pathname: '/file/christine-static/**',
},
],
},
};
2024-07-01 10:28:41 -04:00
export default withContentCollections(nextConfig);