Files
c5cd77f2-19dd-4325-b704-91a…/next.config.js
2026-03-04 19:37:58 +00:00

21 lines
401 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: '**.amazonaws.com',
pathname: '/**',
},
],
unoptimized: true,
},
};
module.exports = nextConfig;