Files
Salona-Shop/next.config.ts
Reza Taghizadeh a2c0348f25 create project
2026-03-15 17:55:18 +03:30

25 lines
634 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
// دامنه جدید برای تصاویر محصولات سالونا اضافه شد
{
protocol: "https",
hostname: "map.mysalona.ir",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;