29 lines
609 B
JavaScript
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;
|