-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathgatsby-config.js
44 lines (44 loc) · 1.06 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
module.exports = {
siteMetadata: {
title: `Awesome Interview Processes 🤩`,
author: `Kamlesh Chandnani`,
siteUrl: `https://awesomeinterviewprocesses.com/`,
description: `List and details of companies who have really amazing interview process`,
social: [
{
name: `twitter`,
url: `https://twitter.com/_kamlesh_`,
},
{
name: `github`,
url: `https://github.com/kamleshchandnani/awesome-interview-processes`,
},
],
},
plugins: [
{
resolve: `gatsby-theme-blog`,
options: {
contentPath: "content/companies",
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Awesome Interview Processes 🤩`,
short_name: `🤩`,
start_url: `/`,
background_color: `#f7fafc`,
theme_color: `#f7fafc`,
display: `standalone`,
icon: `content/assets/favicon.png`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-149382401-1",
},
},
],
};