-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
76 lines (76 loc) · 1.9 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
module.exports = {
siteMetadata: {
title: `WELCOME TO MY-ISLAM`,
description: `Litle website that give you local prayer time, and for the rest of the day.`,
author: `@Suraj Abubakar`,
siteUrl: `https://www.MY-ISLAM.hmounir.com`,
},
plugins: [
{
resolve: 'gatsby-plugin-static-folders',
options: {
folders: ['./static'],
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-robots-txt`,
{
resolve: `gatsby-plugin-sitemap`,
options: {
sitemapSize: 5000,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-styled-components-dark-mode`,
options: {
light: {
secondaryColor: '#FFFAFA',
primaryColor: '#06c2e3',
textColor: '#071f2d',
onBackgroundTextColor: '#FFFAFA',
backgroundTextColor: '#1E2A31',
},
dark: {
secondaryColor: '#022120',
primaryColor: '#06c2e3',
textColor: '#FFFAFA',
onBackgroundTextColor: '#FFFAFA',
backgroundTextColor: '#000000',
},
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-gtag`,
options: {
trackingId: `UA-157838187-3`,
head: false,
anonymize: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `MY-ISLAM`,
short_name: `MY-ISLAM`,
description: `Awesome website that give you local prayer time, and for the rest of the day.`,
lang: `en`,
display: `standalone`,
start_url: `/`,
background_color: `#45C569`,
theme_color: `#45C569`,
icon: `src/images/logo.png`,
},
},
`gatsby-plugin-offline`,
],
};