-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
63 lines (62 loc) · 1.38 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
58
59
60
61
62
63
const path = require(`path`);
module.exports = {
siteMetadata: {
title: 'Louzada',
description: 'louzada01.',
author: 'Louzada',
siteURL: 'https://louzada.me/',
twitterUsername: 'uailouzin',
contact: [
{
label: 'He4rt Developers',
linkTo: 'https://heartdevs.com/',
},
{
label: 'Instagram',
linkTo: 'https://instagram.com/uailouzin',
},
{
label: 'Spotify',
linkTo:
'https://open.spotify.com/user/12173950264?si=5YjFHGjGRf2YP59CX9fJEQ',
},
{
label: 'GitHub',
linkTo: 'https://github.com/louzada01',
},
{
label: 'Linkedin',
linkTo: 'https://www.linkedin.com/in/joao-louzada/',
},
{
label: 'Twitter',
linkTo: 'https://twitter.com/uailouzin',
},
{
label: 'Reunião',
linkTo: 'https://calendar.app.google/Vd1pmF8oDRerVfpc6'
}
],
},
plugins: [
'gatsby-plugin-typescript',
'gatsby-plugin-styled-components',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: path.join(__dirname, `src`, `assets`),
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /src/,
},
},
},
],
};