Skip to content

Commit 416c2e2

Browse files
committed
Fix: 이미지 못불러오는 문제 해결
1 parent 5b990c0 commit 416c2e2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

next.config.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ import type { NextConfig } from "next";
33
const nextConfig: NextConfig = {
44
output: "export",
55
images: {
6-
domains: [
7-
"user-images.githubusercontent.com",
8-
"https://lazy-dinosaur.github.io/",
6+
domains: ["user-images.githubusercontent.com", "lazy-dinosaur.github.io"],
7+
remotePatterns: [
8+
{
9+
protocol: "https",
10+
hostname: "lazy-dinosaur.github.io",
11+
},
912
],
1013
formats: ["image/webp"],
1114
// Remove unoptimized: true to enable image optimization

0 commit comments

Comments
 (0)