generated from ConductionNL/Proto-component-commonground
-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-config.js
62 lines (62 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
60
61
62
module.exports = {
siteMetadata: {
title: `Producten en diensten catalogus`,
description: `Demodam is a fictitious municipal website that shows which reusable open source products and services are available for municipalities. This website hosts the community governance and demodam information.`,
author: `The Demodam Community`,
repositoryUrl: `https://github.com/demodam/demodam.org/`,
slackUrl: `https://samenorganiseren.slack.com/archives/C01S2QM81V4`,
languages: ['en' ,'nl'],
defaultLanguage: 'nl'
},
plugins: [
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/pages`,
},
},
`gatsby-transformer-sharp`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-check-links`,
`gatsby-remark-prismjs`,
`gatsby-remark-images`,
]
}
},
{
resolve: `gatsby-plugin-plausible`,
options: {
domain: `demodam.org`,
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Demodam`,
short_name: `demodam`,
start_url: `/`,
display: `standalone`,
icon: `src/images/utrecht_logo.svg`,
},
},
`gatsby-plugin-i18n`,
{
resolve: `gatsby-plugin-i18n`,
options: {
langKeyDefault: 'nl',
useLangKeyLayout: false,
prefixDefault: false,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}