38 lines
768 B
JavaScript
38 lines
768 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
unoptimized: true,
|
|
domains: [
|
|
"source.unsplash.com",
|
|
"images.unsplash.com",
|
|
"ext.same-assets.com",
|
|
"ugc.same-assets.com",
|
|
],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "source.unsplash.com",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "images.unsplash.com",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "ext.same-assets.com",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "ugc.same-assets.com",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|