-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
45 lines (45 loc) · 1.05 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
module.exports = {
siteMetadata: {
title: `Data Porn`,
description: `Get mind blown`,
author: `@mirzafaizan`,
// siteUrl: `https://dataporn.cc`
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Data Porn`,
short_name: `dataporn`,
start_url: `/`,
background_color: `#0000ff`,
theme_color: `#0000ff`,
display: `standalone`,
icon: `src/images/logo.svg`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/`],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// replace "UA-XXXXXXXXX-X" with your own Tracking ID
trackingId: "UA-167052577-1",
},
},
],
}