Files
Compass/_old/next.config.ts
MartinBraquet 14c12ffb08 Rename
2025-09-18 11:19:09 +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;