-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
66 lines (66 loc) · 1.49 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Sauvetage Bennies Rescue`,
description: 'Trapping and neutering/spaying cats/kittens. Bringing them back to health when needed. Setting up adoptions or fostering for cats/kittens.',
siteUrl: `https://www.sauvetagebenniesrescue.ca`
},
plugins: ["gatsby-plugin-sass", "gatsby-plugin-image", "gatsby-plugin-sharp", "gatsby-transformer-sharp",
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/files/"
},
__key: "images"
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Inika`,
`source sans pro\:300,400,400i,700` // you can also specify font weights and styles
],
display: 'swap'
}
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Risque`, `Montserrat`
],
display: 'swap'
}
},
{
resolve: 'gatsby-source-contentful',
options: {
"accessToken": "oHHPclMqccBUTGME9MwqMAc_Nvjq1oXZXj07jBCkFoY",
"spaceId": "5nixl2k7fr71",
downloadLocal: true,
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/Favicon.png"
}
},
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en-US'
}
},
{
resolve: `gatsby-plugin-i18n`,
options: {
langKeyForNull: 'en',
useLangKeyLayout: false,
prefixDefault: true,
},
},]
};