-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
56 lines (56 loc) · 1.68 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
module.exports = {
siteMetadata: {
siteUrl: `https://supersimple.pro`,
title: `Supersimple, agence de sensibilisation et formation à l'accessibilité, l'ergonomie, les performances, l'éco-conception et l'éthique`,
description: `Nous proposons des ateliers et un accompagnement adapté aux entreprises, start-ups, indépendants et institutions afin d'appréhender les bonnes pratiques du web qui favorisent l'expérience et l'adhésion de vos audiences.`,
author: `@mediakod`,
},
plugins: [
{
resolve: `gatsby-plugin-html-attributes`,
options: {
lang: 'fr'
}
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-robots-txt`,
options: {
host: `https://supersimple.pro`,
sitemap: `https://supersimple.pro/sitemap.xml`,
env: {
development: {
policy: [{ userAgent: '*', allow: ['/'] }]
},
production: {
policy: [{ userAgent: '*', allow: '/' }]
}
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/assets/img`,
},
},
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Supersimple, sensibilisation et formation aux bonnes pratiques du web`,
short_name: `supersimple`,
start_url: `/`,
background_color: `#302b30`,
theme_color: `#302b30`,
display: `minimal-ui`,
icon: `src/assets/img/supersimple-icon.png`,
},
},
`gatsby-plugin-offline`,
],
}