-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
68 lines (68 loc) · 1.94 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
require('dotenv').config();
module.exports = {
siteMetadata: {
title: `ryichk's portfolio`,
name: `ryichk`,
siteUrl: `https://ryichk.com`,
description: `This is a website that introduces ryichk's self and the apps coded by ryichk.`,
hero: {
heading: `Welcome to ryichk's portfolio.`,
maxWidth: 652,
},
social: [{
name: `github`,
url: `https://github.com/ryichk`,
},
{
name: `instagram`,
url: `https://instagram.com/ryichk`,
},
{
name: `facebook`,
url: `https://facebook.com/ryo.ichiki.3`
},
{
name: `twitter`,
url: `https://twitter.com/ryichk_dev`,
},
],
},
plugins: [{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.GATSBY_GOOGLE_ANALYTICS_ID,
head: true,
},
},
{
resolve: "@narative/gatsby-theme-novela",
options: {
contentPosts: "content/posts",
contentAuthors: "content/authors",
rootPath: '/',
basePath: "/",
pageLength: 6,
authorsPage: true,
sources: {
local: true,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `ryichk's portfolio`,
short_name: `ryichk`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#fff`,
display: `standalone`,
icon: `src/assets/ryichk.png`,
},
},
{
resolve: `gatsby-plugin-netlify-cms`,
options: {},
},
],
};