Files
portfolio/next.config.mjs
T
2026-04-23 22:29:00 +02:00

29 lines
609 B
JavaScript

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;