-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
103 lines (101 loc) · 2.5 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
require('dotenv').config();
const path = require('path');
const {
name,
shortName,
title,
description,
themeColor,
backgroundColor,
siteUrl,
logo,
author,
type,
googleAnalyticsID,
favicon
} = require('./data/site-config');
module.exports = {
siteMetadata: {
title,
description,
author,
siteUrl,
logo,
type,
favicon
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: googleAnalyticsID,
head: true
}
},
// {
// resolve: 'gatsby-source-rest-api',
// options: {
// endpoints: [
// 'https://newsapi.org/v2/top-headlines?country=in&apiKey=fde476b63c444d7683985cb9d9e381a0'
// ]
// }
// },
// {
// resolve: `gatsby-plugin-purgecss`,
// options: {
// printRejected: true, // Print removed selectors and processed file names
// // develop: true, // Enable while using `gatsby develop`
// // tailwind: true, // Enable tailwindcss support
// whitelist: [
// 'bulb-dark .bulb',
// 'bulb-dark',
// 'demo__card__dark__mode',
// 'demo__card.reset',
// 'demo__card.reset',
// 'demo__card__choice',
// 'demo__card.inactive',
// 'demo__card.to-left',
// 'demo__card.to-right',
// 'demo__card.below',
// 'demo__card__top',
// 'demo__tip',
// 'container'
// ] // Don't remove this selector
// // ignore: ['/ignored.css', 'prismjs/', 'docsearch.js/'], // Ignore files/folders
// // purgeOnly : ['components/', '/main.css', 'bootstrap/'], // Purge only these files/folders
// }
// },
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: path.join(__dirname, `src`, `static/images`)
}
},
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
name,
short_name: shortName,
start_url: '/',
background_color: backgroundColor,
theme_color: themeColor,
display: 'minimal-ui',
icon: favicon
}
},
'gatsby-plugin-offline',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: siteUrl,
sitemap: `${siteUrl}/sitemap.xml`,
policy: [{ userAgent: '*', disallow: '' }]
}
}
]
};