initial commit

This commit is contained in:
Suvodip
2025-03-22 19:16:25 +05:30
commit bf940e80fb
75 changed files with 17737 additions and 0 deletions

37
next.config.mjs Normal file
View File

@@ -0,0 +1,37 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
images: {
unoptimized: true,
domains: [
"source.unsplash.com",
"images.unsplash.com",
"ext.same-assets.com",
"ugc.same-assets.com",
],
remotePatterns: [
{
protocol: "https",
hostname: "source.unsplash.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "ext.same-assets.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "ugc.same-assets.com",
pathname: "/**",
},
],
},
};
export default nextConfig;