-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
gatsby-config.js
66 lines (65 loc) · 1.42 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
const breakPoints = {
xs: "(max-width: 575px)",
sm: "(max-width: 767px)",
md: "(max-width: 991px)",
l: "(max-width: 1367px)",
xl: "(max-width: 1920px)",
}
module.exports = {
siteMetadata: {
title: `GSoC Organizations`,
siteUrl: `https://www.gsocorganizations.dev`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-offline`,
{
resolve: "gatsby-plugin-robots-txt",
options: {
policy: [{ userAgent: "*", allow: "/" }],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `GSoC Organizations`,
short_name: `GSoC Organizations`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#db6400`,
display: `minimal-ui`,
icon: `static/images/logo.png`,
},
},
{
resolve: "gatsby-plugin-breakpoints",
options: {
queries: breakPoints,
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
color: `#db6400`,
showSpinner: false,
},
},
{
resolve: `@isamrish/gatsby-plugin-google-adsense`,
options: {
googleAdClientId: "ca-pub-9769516184087442",
head: true,
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: ["G-HJ9QY230LB"],
pluginConfig: {
head: true,
},
},
},
],
}