generated from mingi3314/blog-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-meta-config.js
32 lines (29 loc) · 882 Bytes
/
gatsby-meta-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
/**
* @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 = {
//TODO: Change the values below according to your project
title: "blog-stream",
description: "Blog that uploads useful contents.",
author: "mingi3314",
siteUrl: "https://blog-stream.netlify.app",
lang: "en-US",
utterances: "",
links: {},
favicon: "src/images/icon.png",
}
// eslint-disable-next-line no-undef
module.exports = metaConfig