-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
43 lines (43 loc) · 1.41 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 = {
siteMetadata: {
title: `Pamel Joel Beltrè - Personal Portfolio site`,
description: `I am a front end designer, I specialize in UI/UX Design and JavaScript development with React / AngularJS`,
author: `@pameljoel`,
siteUrl: 'https://www.pameljoel.com',
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
`gatsby-plugin-layout`,
`gatsby-plugin-typescript`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
'gatsby-plugin-robots-txt',
{
resolve: 'gatsby-plugin-preconnect',
options: {
domains: [
{ domain: 'https://www.google.com/', crossOrigin: true },
{ domain: 'https://www.google-analytics.com', crossOrigin: true },
{ domain: 'https://www.google.it', crossOrigin: true },
{ domain: 'https://stats.g.doubleclick.net', crossOrigin: true },
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `pameljoel`,
short_name: `pameljoel`,
start_url: `/`,
background_color: `#12b5fc`,
theme_color: `#12b5fc`,
display: `minimal-ui`,
icon: `src/images/me.png`, // This path is relative to the root of the site.
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.app/offline
// 'gatsby-plugin-offline',
],
};