-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.config.js
More file actions
45 lines (38 loc) · 1.13 KB
/
site.config.js
File metadata and controls
45 lines (38 loc) · 1.13 KB
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
37
38
39
40
41
42
43
44
45
// site.config.js (프로젝트 루트 또는 적절한 경로에 위치)
const siteConfig = {
// 기본 정보
title: "My Awesome Website",
description: "A brief description of my awesome website.",
siteUrl: "https://example.com", // 사용자가 자신의 도메인으로 변경해야 함
lang: "en", // 기본 언어 (예: "en", "ko")
defaultNoteSlug: "welcome",
metadata: {
faviconPath: "/favicon.png",
},
sideBar: {
title: "My Awesome Website",
},
openGraph: {
type: "website",
images: [
{
url: "/og-image.png",
width: 1200,
height: 630,
alt: "Website Open Graph Image",
},
],
siteName: "My Awesome Website",
locale: "en_US", // 기본 로케일 (예: "en_US", "ko_KR")
},
twitter: {
card: "summary_large_image",
images: ["/og-image.png"],
site: "@YourTwitterSiteHandle",
creator: "@YourTwitterHandle",
},
theme: {
defaultTheme: "system", // 'light', 'dark', 'system'
},
};
export default siteConfig;