mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-03 19:37:52 -05:00
21 lines
435 B
TypeScript
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;
|