-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.js
59 lines (59 loc) · 1.27 KB
/
next-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
58
59
/* eslint-disable import/no-anonymous-default-export */
module.exports = {
title: 'Moroo Blog',
description: 'Software QA 및 테스트 자동화에 대한 이야기',
twitter: {
handle: '@lee_moroo',
site: '@lee_moroo',
cardType: 'summary_large_image',
},
openGraph: {
type: 'website',
title: 'Moroo Blog',
defaultTitle: 'Moroo Blog',
description: 'Software QA 및 테스트 자동화에 대한 이야기',
locale: 'ko_KR',
site_name: 'Moroo Blog',
profile: {
firstName: 'Soon Han',
lastName: 'Lee',
username: 'moroo',
gender: 'male',
},
images: [
{
url: 'https://blog.moroo.dev/assets/blog-cover-image.jpeg',
alt: 'Cover Image',
type: 'image/jpg',
width: 1200,
height: 424,
},
],
},
additionalMetaTags: [
{
property: 'NaverBot',
content: 'All',
},
{
name: 'NaverBot',
content: 'index,follow',
},
{
property: 'Yeti',
content: 'All',
},
{
name: 'Yeti',
content: 'index,follow',
},
// {
// name: 'facebook-domain-verification',
// content: '9wvjinz2dotboiz2f3m2sdgqish34f',
// },
{
property: 'fb:app_id',
content: '736749940650920',
},
],
};