-
Notifications
You must be signed in to change notification settings - Fork 22
/
gatsby-config.js
57 lines (55 loc) · 1.27 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
module.exports = {
siteMetadata: {
title: `Operate First`,
siteUrl: `https://operate-first.cloud/`,
},
plugins: [
{
resolve: `@lekoarts/gatsby-theme-minimal-blog-core`,
options: {
basePath: '/blog',
},
},
'gatsby-plugin-react-helmet',
'gatsby-plugin-catch-links',
'gatsby-plugin-mantine',
{
resolve: `gatsby-plugin-mdx`,
options: {
lessBabel: true,
extensions: [`.mdx`, `.md`],
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 960,
quality: 90,
linkImagesToOriginal: false,
backgroundColor: `transparent`,
},
},
`gatsby-remark-prismjs`,
],
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
'UA-178212082-1', // Universal Analytics (ends 2023-02)
'G-TNPDM9W9HY', // GA4 operate-first - GA4
'G-4KZBK0GHEG', // GA4 operate-first - 2022
],
pluginConfig: {
head: true,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
icon: `src/assets/logo_arrows.svg`,
},
},
],
};