21 lines
401 B
JavaScript
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;
|