-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
43 lines (43 loc) · 1.08 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
module.exports = {
siteMetadata: {
title: `Gentics Mesh Starter blog`,
imageBaseUrl: 'https://demo.getmesh.io/api/v2/demo/webroot'
},
plugins: [
{
resolve: 'gatsby-source-graphql',
options: {
// Type used to prefix the mesh graphql types
typeName: 'Mesh',
// Field to be used to mount the graphql API
fieldName: 'mesh',
// Gentics Mesh server url
url: 'https://demo.getmesh.io/api/v2/demo/graphql',
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Gentics Mesh Example',
short_name: 'Gentics Mesh Example',
start_url: '/',
background_color: '#fff',
theme_color: '#61045f',
display: 'minimal-ui',
icons: [
{
src: `/favicons/chrome-192.png`,
sizes: `192x192`,
type: `image/png`,
},
{
src: `/favicons/chrome-512.png`,
sizes: `512x512`,
type: `image/png`,
},
],
},
},
`gatsby-plugin-offline`,
],
};