Files
vercel__next.js/examples/image-component/next.config.js
2025-02-12 11:41:00 -06:00

15 lines
268 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "assets.vercel.com",
port: "",
pathname: "/image/upload/**",
search: "",
},
],
},
};