-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathseo.config.js
57 lines (57 loc) · 1.12 KB
/
seo.config.js
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
46
47
48
49
50
51
52
53
54
55
56
57
export default {
titleTemplate: "%s | holidays",
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.ico",
},
{
rel: "manifest",
href: "/manifest.json",
},
{
rel: "apple-touch-icon",
href: "/appIcons/icon-192x192.png",
},
// 추가적인 링크 태그
],
additionalMetaTags: [
{
name: "theme-color",
content: "#317EFB",
},
{
name: "description",
content: "news",
},
{
name: "keywords",
content: "news",
},
{
name: "application-name",
content: "name-test",
},
{
name: "apple-mobile-web-app-capable",
content: "yes",
},
{
name: "apple-mobile-web-app-status-bar-style",
content: "default",
},
{
name: "apple-mobile-web-app-title",
content: "apple-name-test",
},
// 추가적인 메타 태그
],
openGraph: {
type: "website",
site_name: "holidays",
images: [{ url: "https://example.com/example_square_image.png123123123" }],
},
// 동적인 값
title: "holidays by 12.3",
description: "Page Description",
};