blog collaboration in landing

This commit is contained in:
hamid zarghami
2025-03-26 23:47:51 +03:30
parent 0ac093ecd9
commit 2a76161a2f
9 changed files with 175 additions and 16 deletions
+13
View File
@@ -2,6 +2,19 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
domains: ["*"],
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "**",
},
],
},
};
export default nextConfig;