-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
66 lines (66 loc) · 1.58 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
module.exports = {
siteMetadata: {
title: "enBonnet",
description:
"Temas de tecnologia que me apasionan como el Frontend, Web, Deploy, Aplicaciones y mas...",
author: "Ender Bonnet",
siteUrl: "https://www.enbonnet.me",
image: "src/images/ender-logo.png",
author: {
name: "Ender Bonnet",
},
social: {
twitter: "@enBonnet",
},
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-152357209-1",
},
},
"gatsby-plugin-react-helmet",
"gatsby-plugin-sass",
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
"gatsby-plugin-offline",
`gatsby-plugin-sitemap`,
{
resolve: "gatsby-plugin-robots-txt",
options: {
host: "https://www.enbonnet.me",
sitemap: "https://www.enbonnet.me/sitemap.xml",
policy: [{ userAgent: "*", allow: "/" }],
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/src/images`,
},
},
{
resolve: "gatsby-source-strapi",
options: {
apiURL: "https://enbonnet-cms.herokuapp.com",
contentTypes: ["article", "category"],
queryLimit: 1000,
},
},
{
resolve: "gatsby-plugin-manifest",
options: {
name: "enBonnet Blog",
short_name: "enBonnet",
start_url: "/",
lang: "es",
background_color: "#FD8529",
theme_color: "#b0413e",
display: "standalone",
icon: "src/images/ender-logo.png",
},
},
],
}