Initial commit: ManoonOils headless store

This commit is contained in:
Neo
2026-03-03 11:58:28 +00:00
commit 8a17f7c43c
42 changed files with 9551 additions and 0 deletions

20
next.config.ts Normal file
View File

@@ -0,0 +1,20 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "manoonoils.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "minio-api.nodecrew.me",
pathname: "/**",
},
],
},
};
export default nextConfig;