-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
58 lines (57 loc) · 1.63 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
siteMetadata: {
title: `Drcoolsanjeev`,
description: `Personal platform to post my blogs, work and talks on upcoming technologies`,
siteUrl: `https://drcoolsanjeev.netlify.com/`,
home: {
title: `Hi! I'm Sanjeev`,
description: `I'm a Fullstack Web Developer, working in Red Hat, capable of building web applications in Java, NodeJs and Go. Also creating design and implementing them to create attractive UI`,
},
/* W3Layouts domain verification key for contact forms https://my.w3layouts.com/Forms/ */
w3l_dom_key: `5e962e8f976a0CF_Domain_verify`
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `${__dirname}/_data`,
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [{
resolve: `gatsby-remark-prismjs`,
options: {
classPrefix: "language-",
inlineCodeMarker: null,
aliases: {},
showLineNumbers: false,
noInlineHighlight: false,
},
},
{
resolve: 'gatsby-remark-emojis',
}],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: "UA-30027142-1",
head: true,
}
},
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-netlify-cms`,
],
}