-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
43 lines (43 loc) · 1.15 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
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true, // defaults to false
jsxPragma: `React`, // defaults to "React"
allExtensions: true, // defaults to false
},
},
{
resolve: "gatsby-plugin-sass",
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// You can add multiple tracking ids and a pageview event will be fired for all of them.
trackingIds: [
"UA-15967013-3", // Google Analytics / GA
],
},
},
{
resolve: "gatsby-plugin-google-tagmanager",
options: {
id: "GTM-5X6DTRX",
includeInDevelopment: false,
defaultDataLayer: { platform: "gatsby" },
},
},
],
siteMetadata: {
title: "VIANCH.com",
titleTemplate: "%s · Vianch.com",
description:
"Full stack application Developer and photographer based in Bogotá Colombia. " +
"Developer at TodayTix Group in New York and Zaga Colombia.",
url: "www.vianch.com",
image: "/images/avatar.png",
twitterUsername: "@vianch_tog",
},
};