-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
35 lines (34 loc) · 939 Bytes
/
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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: `Interview Practice`,
description: `Practice your interview skills with questions`,
author: `Thien Phan`,
keywords: [
'interview questions',
'skill development',
'interview practice',
'questions',
'interview',
],
siteUrl: `https://interviewpractice.info`,
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-195699045-1',
head: true,
anonymize: true,
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`, // Needed for dynamic images
`gatsby-plugin-react-helmet`,
],
};