mirror of
https://git.meshkee.com/Meshkee-Websites/mashinify.git
synced 2026-08-11 20:29:34 +04:30
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>
15 lines
382 B
TypeScript
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;
|