-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.mjs
36 lines (35 loc) · 1.05 KB
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "www.gravatar.com", // Gravatar 도메인
port: "", // 기본 포트 (HTTPS의 경우 빈 문자열)
pathname: "/avatar/**", // Gravatar에서의 이미지 경로 패턴
},
{
//https://bootcamp.weniv.co.kr/images/camps/frontend-est/thumbnail.webp
protocol: "https",
hostname: "bootcamp.weniv.co.kr",
port: "", // 기본 포트 (HTTPS의 경우 빈 문자열)
},
{
protocol: "https",
hostname: "paullab.co.kr",
port: "", // 기본 포트 (HTTPS의 경우 빈 문자열)
},
{
protocol: "https",
hostname: "cdn.travie.com",
port: "", // 기본 포트 (HTTPS의 경우 빈 문자열)
},
{
protocol: "https",
hostname: "weaverse-techtide.s3.amazonaws.com",
port: "", // 기본 포트 (HTTPS의 경우 빈 문자열)
},
],
},
};
export default nextConfig;