-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
82 lines (80 loc) · 1.99 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
const path = require('path')
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: 'CompartiMOSS',
description:
'Bienvenidos a CompartiMOSS, la revista digital de habla hispana en la que se escribe sobre la tecnología Microsoft y todo lo relacionado con ésta',
author: '@compartimoss_com',
siteUrl: `https://www.compartimoss.com`,
},
graphqlTypegen: true,
plugins: [
{
resolve: "gatsby-plugin-google-gtag",
options: {
trackingIds: [
"G-TJCZJ7913E"
]
}
},
`gatsby-plugin-sitemap`,
`gatsby-plugin-robots-txt`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-remark-images`,
`gatsby-transformer-remark`,
`gatsby-plugin-sharp`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-plugin-mdx`,
options: {
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1024
},
}
],
},
},
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/pages`
}
},
'gatsby-transformer-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'CompartiMOSS',
short_name: 'CompartiMOSS',
description: 'La revista digital de habla hispana en la que se escribe sobre la tecnología Microsoft y todo lo relacionado con ésta',
lang: 'es',
start_url: '/',
background_color: '#303030',
theme_color: '#303030',
display: 'standalone',
icon: 'src/images/compartimoss-icon.png'
},
},
'gatsby-plugin-offline',
{
resolve: 'gatsby-plugin-mdx-frontmatter'
}
]
};