-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
86 lines (84 loc) · 2.23 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `projects.jeromelachaud.com`,
description: `Jerome Lachaud's personal and open source projects`,
author: `@jeromelachaud`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-github-api`,
options: {
// token: required by the GitHub API
token: process.env.GITHUB_API_TOKEN,
// GraphQLquery: defaults to a search query
graphQLQuery: `
query ($number_of_repos: Int!) {
user(login: "jeromelachaud") {
pinnedItems(first: $number_of_repos) {
totalCount
edges {
node {
... on Repository {
name
databaseId
description
homepageUrl
readme: object(expression:"master:README.md"){
... on Blob{
text
}
}
repositoryTopics(last: $number_of_repos) {
nodes {
topic {
name
}
}
}
url
}
}
}
}
}
}
`,
// variables: defaults to variables needed for a search query
variables: {
number_of_repos: 6,
},
},
},
`gatsby-plugin-sass`,
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /svg/,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `projects.jeromelachaud.com`,
short_name: `projects.jeromelachaud.com`,
icon: `src/images/icon.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-36455257-4",
head: false,
anonymize: true,
respectDNT: true,
defer: false,
},
},
],
}