This commit is contained in:
2026-04-23 22:29:00 +02:00
parent fcd3554545
commit 3460b67777
37 changed files with 356 additions and 325 deletions
+23 -2
View File
@@ -1,7 +1,28 @@
// next.config.mjs
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "raw.githubusercontent.com",
pathname: "/tandpfun/skill-icons/**",
},
{
protocol: "https",
hostname: "raw.githubusercontent.com",
pathname: "/devicons/devicon/**",
},
{
protocol: "https",
hostname: "github.com",
pathname: "/tandpfun/skill-icons/**",
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
],
},
};
export default nextConfig;