-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathgatsby-config.js
64 lines (64 loc) · 1.64 KB
/
gatsby-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
60
61
62
63
64
module.exports = {
// pathPrefix: '/',
// Customize your site metadata:
siteMetadata: {
title: [
['ko', '아빠는 개발자'],
['en', 'Dev Dad'],
],
author: 'Cha Sung Won',
description: [
[
'ko',
'개발자를 꿈꾸는 아들을 둔 아빠 개발자입니다.\n데이터 시각화에 관심이 있으며, 재미있는 프로그램을 만드는 것을 좋아합니다.',
],
[
'en',
"I am a developer dad with a son who dreams of a developer.\nI'm interested in data visualization and enjoy creating fun programs.",
],
],
siteUrl: `https://bluewings.github.io/`,
social: [
{
name: 'GitHub',
url: 'https://github.com/bluewings',
},
],
},
plugins: [
// "gatsby-theme-blog",
{
resolve: 'gatsby-plugin-bluewings',
options: {
langKeyDefault: 'ko',
editOnGithub: {
url: 'https://github.com/bluewings/dev-dad',
directory: '',
branch: 'master',
},
disqusShortname: 'dev-dad',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-87089021-5',
},
},
'gatsby-plugin-sitemap',
// {
// resolve: 'gatsby-plugin-manifest',
// options: {
// name: 'Gatsby Starter Blog',
// short_name: 'GatsbyJS',
// start_url: '/',
// background_color: '#ffffff',
// theme_color: '#663399',
// display: 'minimal-ui',
// icon: 'content/assets/gatsby-icon.png',
// icons: [],
// },
// },
'gatsby-plugin-feed-mdx',
],
};