File size: 375 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/** @type {import('next').NextConfig} */
module.exports = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "b-cdn.net",
port: "",
pathname: "/my-account/**",
},
{
protocol: "https",
hostname: "*.stream.prepr.io",
port: "",
pathname: "/my-account/**",
},
],
},
};
|