-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
79 lines (79 loc) · 1.89 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Chukwudi Ngwobia | Fullstack software developer`,
description: "Personal website/blog for Chukwudi Ngwobia.",
image: "src/images/icon.png",
siteUrl: `https://www.chux.dev`,
keywords:
"HTML,CSS,JavaScript,React,Engineering,Software,Web development,Tech Blog,Portfolio website",
author: "Ngwobia, Chukwudi Mike",
},
plugins: [
"gatsby-plugin-netlify-cms",
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: `blog`,
path: `${__dirname}/src/blog`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: "gatsby-plugin-mdx",
options: {
extensions: [".mdx", ".md"],
gatsbyRemarkPlugins: [`gatsby-remark-images`],
},
},
"gatsby-plugin-postcss",
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Chukwudi Ngwobia. | Fullstack Software Engineer.",
short_name: "chux.dev",
start_url: "/",
background_color: "#fff",
theme_color: "#f1f5f9",
icon: "src/images/icon.png",
theme_color_in_head: false,
display: "minimal-ui",
},
},
{
resolve: `gatsby-plugin-hotjar`,
options: {
includeInDevelopment: false,
id: 3324975,
sv: 6,
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: ["G-C14PSMX7J5"],
pluginConfig: {
head: true,
},
},
},
{
resolve: `gatsby-plugin-google-adsense`,
options: {
publisherId: `ca-pub-1390691972588218`,
},
},
`gatsby-plugin-sitemap`,
],
};