mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-06 04:48:14 -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;
|