mirror of
https://git.meshkee.com/Meshkee-Websites/oaktasty.git
synced 2026-08-11 20:50:57 +04:30
Replace hardcoded products with live tenant catalog data so the menu stays in sync with the backend. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
dangerouslyAllowSVG: true,
|
|
contentDispositionType: "attachment",
|
|
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "meshkee-storage.sas.amin.parminstorage.ir",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|