-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgatsby-config.js
More file actions
75 lines (74 loc) · 1.73 KB
/
gatsby-config.js
File metadata and controls
75 lines (74 loc) · 1.73 KB
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
module.exports = {
plugins: [
"gatsby-plugin-webpack-bundle-analyser-v2",
"gatsby-plugin-postcss",
"gatsby-plugin-react-helmet",
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-transformer-yaml`,
`gatsby-transformer-json`,
"gatsby-plugin-react-leaflet",
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: `gatsby-remark-default-html-attrs`,
options: {
a: {
className: "underline",
target: "_blank",
rel: "noreferrer",
},
},
},
"gatsby-remark-copy-linked-files",
],
},
},
{
resolve: `gatsby-plugin-layout`,
options: {
component: require.resolve(`./src/components/layout`),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Trustlines Network`,
short_name: `TL Network`,
start_url: `/`,
background_color: `#f7f0eb`,
theme_color: `#a2466c`,
display: `standalone`,
icon: `src/images/favicon.png`,
},
},
{
resolve: "gatsby-plugin-matomo",
options: {
siteId: "5",
matomoPhpScript: "matomo.php",
matomoJsScript: "matomo.js",
matomoUrl: "https://stats.trustlines.network",
siteUrl: "trustlines.network",
},
},
],
};