-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-meta-config.js
More file actions
33 lines (30 loc) · 902 Bytes
/
Copy pathgatsby-meta-config.js
File metadata and controls
33 lines (30 loc) · 902 Bytes
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
/**
* @typedef {Object} Links
* @prop {string} github Your github repository
*/
/**
* @typedef {Object} MetaConfig
* @prop {string} title Your website title
* @prop {string} description Your website description
* @prop {string} author Maybe your name
* @prop {string} siteUrl Your website URL
* @prop {string} lang Your website Language
* @prop {string} utterances Github repository to store comments
* @prop {Links} links
* @prop {string} favicon Favicon Path
*/
/** @type {MetaConfig} */
const metaConfig = {
title: "Reason to Code",
description: `Sukyeong's Blog`,
author: "Sukyeong",
siteUrl: "http://www.reason-to-code.com",
lang: "utf-8",
utterances: "zztnrudzz13/reason-to-code-comments",
links: {
github: "https://github.com/zztnrudzz13/reason-to-code",
},
favicon: "src/images/icon.png",
}
// eslint-disable-next-line no-undef
module.exports = metaConfig