-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
94 lines (93 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const path = require('path')
module.exports = {
siteMetadata: {
title: 'Nahuel Espinosa',
siteUrl: 'https://www.nahuelespinosa.com.ar',
author: 'Nahuel Espinosa',
location: 'Buenos Aires, Argentina',
twitterUser: '@nahueespinosa',
social: {
email: 'mailto:[email protected]',
github: 'https://github.com/nahueespinosa/',
linkedin: 'https://www.linkedin.com/in/nahuel-espinosa-617a1398/',
twitter: 'https://www.twitter.com/nahueespinosa',
},
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Nahuel Espinosa',
short_name: 'Nahue',
description: 'Nahuel Espinosa\'s personal site',
start_url: '/',
background_color: '#ffffff',
theme_color: '#333333',
display: 'browser',
icon: 'static/favicon.png',
},
},
'gatsby-plugin-offline',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-153304934-3',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'blog',
path: path.join(__dirname, 'content', 'blog')
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'assets',
path: path.join(__dirname, 'content', 'assets'),
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'static',
path: path.join(__dirname, 'static'),
}
},
{
resolve: 'gatsby-plugin-intl',
options: {
path: path.join(__dirname, 'src', 'intl'),
languages: ['en', 'es'],
defaultLanguage: 'en',
}
},
'gatsby-remark-images',
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 800,
linkImagesToOriginal: false,
showCaptions: true,
},
},
],
},
},
'gatsby-remark-reading-time',
'gatsby-transformer-json',
'gatsby-transformer-sharp',
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-plugin-sitemap',
'gatsby-plugin-styled-components',
'gatsby-plugin-preload-fonts',
],
}