create project

This commit is contained in:
Reza Taghizadeh
2026-03-15 17:55:18 +03:30
parent fab6af6f77
commit a2c0348f25
84 changed files with 6471 additions and 154 deletions

View File

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