-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgatsby-config.js
59 lines (59 loc) · 1.73 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Jenkins Contributor Spotlight`,
siteUrl: `https://contributors.jenkins.io`,
description: `Jenkins Contributor Spotlight is where we celebrate the contributions of Jenkins community members`,
},
plugins: [
'gatsby-plugin-image',
'gatsby-plugin-sitemap',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src`,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: `Jenkins Contributor Spotlight`,
short_name: `Contributor Spotlight`,
start_url: `/`,
display: `standalone`,
icon: `${__dirname}/src/images/jenkins.png`,
},
},
`gatsby-transformer-asciidoc`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `${__dirname}/src/utils/typography`,
},
},
{
resolve: `gatsby-transformer-asciidoc`,
options: {
attributes: {
imagesdir: `${__dirname}/static@`,
},
},
},
{
resolve: `gatsby-omni-font-loader`,
options: {
enableListener: true,
preconnect: [
`https://fonts.googleapis.com`,
`https://fonts.gstatic.com`,
],
},
},
],
};