-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
74 lines (73 loc) · 1.69 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
65
66
67
68
69
70
71
72
73
74
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
plugins: [
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'http://public-view.kr',
sitemap: 'http://public-view.kr/sitemap.xml',
policy: [{ userAgent: '*', allow: '/' }]
}
},
`gatsby-plugin-react-helmet`,
'gatsby-transformer-remark',
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp', // Needed for dynamic images
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'notes',
path: `${__dirname}/src/notes/`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'projects',
path: `${__dirname}/src/projects/`,
},
},
{
resolve: 'gatsby-plugin-page-creator',
options: {
path: `${__dirname}/src/projects`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images/`,
},
},
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
},
},
'gatsby-plugin-emotion',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data/`,
},
},
],
siteMetadata: {
title: '한국인의 생각',
description: '한국인의 생각 설명',
copyright: 'This is copyright 2021 공공의창 & 빠띠',
image: '/meta.png',
contact: '[email protected]',
url: 'public-view.kr',
siteUrl: 'http://public-view.kr',
},
}