-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
96 lines (95 loc) · 2.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const languages = require('./src/data/languages');
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
author: `justvr`,
description: `living in germany berlin compared to the life in serbia and balkan`,
keywords: ['berlin', 'germany', 'balkan', 'everyday life'],
siteUrl: `https://www.balkanbread.com`,
title: `cultural differences between living in germany berlin and serbia`,
},
plugins: [
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://www.balkanbread.com',
sitemap: 'https://www.balkanbread.com/sitemap.xml',
policy: [{ userAgent: '*', disallow: '' }]
}
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
background_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/favicon.png`, // This path is relative to the root of the site.
name: `Balkan Bread`,
short_name: `Balkan Bread`,
start_url: `/`,
theme_color: `#663399`,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// @see https://gatsby.dev/offline
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-plugin-i18n',
options: {
langKeyDefault: languages.defaultLangKey,
langKeyForNull: 'any',
markdownRemark: {
postPage: 'src/templates/post.js',
query: `
{
allMarkdownRemark {
edges {
node {
fields {
slug,
langKey
}
}
}
}
}
`,
},
prefixDefault: false,
useLangKeyLayout: true,
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/pages/blog`,
name: 'pages'
}
},
'gatsby-transformer-remark',
{
resolve: `gatsby-plugin-breadcrumb`,
options: {
// useAutoGen: required 'true' to use autogen
useAutoGen: true,
// autoGenHomeLabel: optional 'Home' is default
autoGenHomeLabel: `home`,
// exlude: optional, include this array to overwrite paths you don't want to
// generate breadcrumbs for.
exclude: [`/404/`],
}
},
],
}