-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
67 lines (67 loc) · 1.46 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
module.exports = {
flags: {
DEV_SSR: false,
},
siteMetadata: {
title: `꼬꼬마 블로그`,
author: {
name: `최진우`,
email: `dev.chlwlsdn0828@gmail.com`,
github: `https://github.com/Choi-Jinwoo`,
},
description: `꼬꼬마의 기술 블로그`,
siteUrl: `https://choi-jinwoo.github.io`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/blog/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-plugin-mdx`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `꼬꼬마 블로그`,
short_name: `wlswoo blog`,
start_url: `/`,
display: `minimal-ui`,
icon: `src/images/icon.png`,
},
},
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-remark-images`,
{
resolve: `gatsby-plugin-mdx`,
options: {
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1200,
},
},
],
},
},
`gatsby-plugin-advanced-sitemap`,
{
resolve: `gatsby-plugin-robots-txt`,
options: {
sitemap: `/sitemap.xml`,
},
},
],
};