-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
86 lines (86 loc) · 2.33 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
module.exports = {
pathPrefix: "/sacri-lapides-aegypti",
siteMetadata: {
siteUrl: "https://paths-erc.eu",
title: "Sacri lapides Aegypti",
menuLinks: [
{ link: "/", title: "home", subMenu: null },
{
link: " ",
title: "places",
subMenu: [
{ link: "/alexandria", title: "alexandria" },
{ link: "/aswan", title: "aswan" },
{ link: "/dendera", title: "dendera" },
{ link: "/east-canopus", title: "esat-canopus" },
{ link: "/elephantine", title: "elephantine" },
{ link: "/marea", title: "marea" },
{ link: "/marina-el-alamein", title: "marina-el-alamein" },
{ link: "/taposiris", title: "taposiris" },
],
},
{ link: "/team/", title: "team", subMenu: null },
{ link: "/news/", title: "news", subMenu: null },
],
},
plugins: [
"gatsby-plugin-image",
"gatsby-plugin-sass",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
"gatsby-plugin-styled-components",
"gatsby-transformer-remark",
`gatsby-plugin-emotion`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`babel-plugin-styled-components`,
'gatsby-plugin-react-leaflet',
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [`gatsby-remark-autolink-headers`],
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "markdown",
path: `${__dirname}/src/content/`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/src/content/`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/static/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/pages/`,
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`montserrat\:0,300;0,400;0,500;0,600;1,400;1,500`,
`open sans\:0,300;0,400;0,500;1,300;1,400`,
`source sans pro\:300,400,400i,700`,
`lora\:400,400i,600,600i,700,700i`,
`roboto condensed\:0,300;0,400;0,700;1,300;1,400;1,700`,
],
display: "swap",
},
},
],
};