Files
mashinify/next.config.ts
T
Alireza HassaniandCursor 8194b7292f Connect Meshkee APIs and add catalog, blog, and content pages.
Wire user-products and blogs to the Website API, add about/contact/categories routes, and polish flat UI filters and page banners.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-10 10:54:27 +03:30

15 lines
382 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: "https", hostname: "**.parspack.net" },
{ protocol: "https", hostname: "cdn.meshkee.com" },
{ protocol: "https", hostname: "**.meshkee.com" },
{ protocol: "https", hostname: "api.meshkee.com" },
],
},
};
export default nextConfig;