initial shame board

This commit is contained in:
dexx
2026-06-05 02:48:52 +03:00
parent c71ef3a8ef
commit 6848cb66a7
13 changed files with 1488 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "raw.githubusercontent.com"
},
{
protocol: "https",
hostname: "github.com"
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com"
}
]
}
};
export default nextConfig;