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";
|
|
|
|
|
2024-09-17 19:45:30 -04:00
|
|
|
const nextConfig = {
|
|
|
|
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
|
|
|
|
2024-09-20 13:41:03 -04:00
|
|
|
export default withContentCollections(nextConfig);
|