This repository was archived by the owner on Feb 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathgatsby-config.js
58 lines (58 loc) · 1.51 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
module.exports = {
siteMetadata: {
title: `DeckDeckGo`,
description: `Make more than presentations. Create, present and share apps. Interact with your audience. With DeckDeckGo, edit your slides anywhere, display them everywhere.`,
author: `DeckDeckGo`,
url: `https://deckdeckgo.com`,
image: '/assets/meta/deckdeckgo-meta.png',
twitterUsername: '@deckdeckgo',
siteUrl: `https://deckdeckgo.com`,
languages: {
langs: ['en', 'fr'],
defaultLangKey: 'en'
}
},
plugins: [
{
resolve: `gatsby-plugin-sass`,
options: {
implementation: require('sass')
}
},
'gatsby-plugin-sharp',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-plugin-offline',
'gatsby-plugin-image',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/assets/images/'
},
__key: 'images'
},
{
resolve: 'gatsby-plugin-i18n',
options: {
langKeyDefault: 'en',
useLangKeyLayout: true,
prefixDefault: true
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `deckdeckgo.com`,
short_name: `DeckDeckGo`,
start_url: `/`,
background_color: `#3a81fe`,
theme_color: `#ffffff`,
display: `standalone`,
icon: `static/assets/deckdeckgo.png` // This path is relative to the root of the site.
}
},
`gatsby-plugin-robots-txt`
]
};