-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
34 lines (34 loc) · 932 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
module.exports = {
siteMetadata: {
title: `Jakub Sarnowski - Software Engineer`,
description: `Top-notch software solutions. Creating robust, intuitive and beautiful products. My clients' success is my success, together we can deliver amazing services.`,
author: `@sarneeh`
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#8F034F`,
theme_color: `#8F034F`,
display: `minimal-ui`,
icon: 'src/images/icon.jpg'
}
},
{
resolve: `gatsby-plugin-postcss`,
options: {
postCssPlugins: [require(`tailwindcss`), require(`autoprefixer`)]
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-141658275-1'
}
}
]
};