-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
167 lines (166 loc) · 3.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
const path = require('path');
module.exports = {
siteMetadata: {
title: 'Simple Reading, Simple Living',
description:
'미니멀 디자인의 RIDIPAPER 4는 시간, 공간, 그리고 당신의 감각까지 그대로 반영합니다.',
keywords: [
'페이퍼',
'페이퍼 프로',
'리디페이퍼',
'리디북스 페이퍼',
'리디북스 페이퍼 프로',
'리디북스 리디페이퍼',
'PAPER',
'PAPER PRO',
'RIDIPAPER',
'7.8인치 전자책 단말기',
'6인치 전자책 단말기',
'전자책 단말기',
'전자책 리더',
'전자책 리더기',
'이북리더',
'이북리더기',
'E-Book Reader',
'E-Reader',
'페이퍼 쇼핑몰',
'페이퍼샵',
'리디샵',
'리페',
'리페프',
'외출필수품',
'전자책',
'이북',
'리디북스',
'EBOOK',
'E북',
'오디오북',
'베스트셀러',
'만화',
'웹소설',
'책추천',
'추천책',
'서점',
'추천도서',
'도서추천',
'책대여',
'책',
'도서',
'자기계발',
'자기개발',
'면접',
'독서',
'글쓰기',
'이직',
],
author: 'RIDI',
},
plugins: [
{
resolve: 'gatsby-plugin-netlify',
options: {
generateMatchPathRewrites: true,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'RIDIPAPER',
short_name: 'PAPER',
icon: 'src/assets/images/meta/favicon-512x512.png',
icons: [
{
src: '/favicons/48.png',
sizes: '48x48',
type: 'image/png',
},
{
src: '/favicons/96.png',
sizes: '96x96',
type: 'image/png',
},
{
src: '/favicons/128.png',
sizes: '128x128',
type: 'image/png',
},
{
src: '/favicons/192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/favicons/196.png',
sizes: '196x196',
type: 'image/png',
},
{
src: '/favicons/256.png',
sizes: '256x256',
type: 'image/png',
},
{
src: '/favicons/384.png',
sizes: '384x384',
type: 'image/png',
},
{
src: '/favicons/512.png',
sizes: '512x512',
type: 'image/png',
},
],
theme_color: '#ffffff',
background_color: '#ffffff',
display: 'browser',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-10567409-11',
},
},
'gatsby-plugin-force-trailing-slashes',
'gatsby-plugin-typescript',
'gatsby-plugin-postcss',
'gatsby-plugin-astroturf',
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline.svg$/,
},
},
},
'gatsby-plugin-react-helmet',
'gatsby-transformer-yaml',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'assets',
path: path.resolve(__dirname, 'src/assets'),
},
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Noto Sans KR:300,400,700:latin,korean'],
},
custom: {
families: ['RIDIBatang', 'Pretendard'],
},
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-tidy',
{
resolve: 'gatsby-plugin-root-import',
options: {
'@': path.join(__dirname, 'src'),
},
},
],
};