WebArena-ShopSmart / next.config.js
Jack
Initial release
1067b6f
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "uploadthing.com",
port: "",
pathname: "/f/**",
},
{
protocol: "https",
hostname: "utfs.io",
port: "",
pathname: "/f/**",
},
],
},
};
module.exports = nextConfig;