Files
havaran/next.config.ts
Alireza HassaniandCursor c49347061c Build Havaran storefront with Meshkee-backed blogs and portfolios.
Clone product, solution, and company pages from the original site and wire articles/projects to the Meshkee Website API with pagination and media from the backend CDN.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-09 15:54:40 +03:30

18 lines
440 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "meshkee-storage.sas.amin.parminstorage.ir",
},
{ protocol: "https", hostname: "cdn.willaspace.com" },
{ protocol: "https", hostname: "cdn.meshkee.com" },
{ protocol: "https", hostname: "c804387.parspack.net" },
],
},
};
export default nextConfig;