-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
110 lines (110 loc) · 2.55 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = {
siteMetadata: {
title: 'Eumentis Cloud',
tagline:
'Digital transformation, Business digitization and automation, Online presence, Startup development, App development, IT automation',
siteUrl: 'https://eumentis.com',
author: 'Eumentis',
twitter: 'https://twitter.com/eumentis_cloud',
adsense: '',
},
pathPrefix: '/',
plugins: [
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// google analytics tracking code
trackingIds: ['UA-109848057-2'],
pluginConfig: {
head: true,
},
},
},
{
resolve: `gatsby-plugin-linkedin-insight`,
options: {
partnerId: `3038226`,
includeInDevelopment: false,
},
},
`gatsby-transformer-csv`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `jpgAssets`,
path: `${__dirname}/src/images/jpg`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pngAssets`,
path: `${__dirname}/src/images/png`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `clientImages`,
path: `${__dirname}/src/images/clients`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `techIcons`,
path: `${__dirname}/src/images/tech`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/data/team/`,
name: `teamData`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/data/clients/`,
name: `clientData`,
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
// color is optional.
color: `#000`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Eumentis Cloud`,
short_name: `Eumentis Cloud`,
start_url: `/`,
background_color: `#FFFFFF`,
theme_color: `#FFFF00`,
display: `standalone`,
icon: `static/img/android-chrome-384x384.png`,
},
},
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /svgAssets/,
},
},
},
`gatsby-plugin-sass`,
`gatsby-plugin-typescript`,
`gatsby-plugin-tslint`,
`gatsby-plugin-catch-links`,
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
],
};