www/next.config.mjs
Xe Iaso 9447a4bef7
add blog component
Signed-off-by: Xe Iaso <me@xeiaso.net>
2024-09-20 13:41:03 -04:00

20 lines
402 B
JavaScript

/** @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/**',
},
],
},
};
export default withContentCollections(nextConfig);