mirror of
https://git.meshkee.com/Meshkee-Websites/arad-arisman.git
synced 2026-08-11 20:29:33 +04:30
- Add src/lib/meshkee.ts API client for the live backend (https://api.meshkee.com, tenant aradarisman.com) - Products list/detail pages now fetch real catalog data, images, categories and pricing instead of static mock data - Blog list/detail pages fetch from /tenants/{domain}/blogs with a graceful empty state since no posts are published yet - Allow the Meshkee media CDN host in next.config.ts - Remove now-unused static src/data/products.ts and posts.ts
19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "images.unsplash.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "c804387.parspack.net",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|