This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
68 lines (68 loc) · 1.59 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
module.exports = {
siteMetadata: {
title: `JshMllr - The Website of Josh Miller.`,
name: `JshMllr | Portfolio & Journal`,
siteUrl: `https://jshmllr.com`,
description: `Design plus code better known on the internet as JshMllr`,
hero: {
heading: `Your UX process isn't the same without a leader in product design and prototyping. I can help with that.`,
maxWidth: 652,
},
social: [
{
name: `twitter`,
url: `https://twitter.com/_jshmllr`,
},
{
name: `instagram`,
url: `https://instagram.com/jshmllr`,
},
{
name: `github`,
url: `https://github.com/jshmllr`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/in/jshmllr/`,
},
],
},
plugins: [
{
resolve: "@narative/gatsby-theme-novela",
options: {
contentPosts: "content/posts",
contentAuthors: "content/authors",
basePath: "/",
authorsPage: true,
sources: {
local: true,
// contentful: true,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Novela by Narative`,
short_name: `Novela`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#fff`,
display: `standalone`,
icon: `src/assets/favicon.png`,
},
},
{
resolve: `gatsby-plugin-netlify-cms`,
options: {
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-66181337-1",
},
},
],
};