Files
Compass/next.config.ts
2025-07-29 11:33:52 +02:00

21 lines
435 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'bayesbond.s3.eu-north-1.amazonaws.com',
pathname: '/**', // allow all paths
},
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
pathname: '/**', // allow all paths
},
],
},
};
export default nextConfig;