20 lines
402 B
JavaScript
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);
|