-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-config.js
78 lines (78 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
module.exports = {
siteMetadata: {
title: `Santa Compañía Creativa`,
description: `Santa es una palabra llena de cosas buenas. No somos un grupo de publicistas de grandes agencias que, llegados a un punto de sus carreras, se unen para montárselo por su cuenta con las cuentas de esas grandes agencias.`,
subtitle: ``,
siteUrl: `https://santacc.es`
},
plugins: [
`gatsby-plugin-preact`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Santa Compañía Creativa',
short_name: 'SantaCC',
start_url: '/',
background_color: '#ffffff',
theme_color: '#000000',
display: 'minimal-ui',
icons: [
{
src: `/favicon.png`,
sizes: `192x192`,
type: `image/png`
},
{
src: `/favicon.png`,
sizes: `512x512`,
type: `image/png`
}
]
}
},
`gatsby-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-offline`,
`gatsby-plugin-catch-links`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-source-wordpress`,
options: {
baseUrl: `admin.santacc.es`, // Change to your WordPress backend URL
protocol: `https`,
hostingWPCOM: false,
useACF: true,
verboseOutput: false
}
},
{
resolve: `gatsby-plugin-sitemap`
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
color: `#ffffff`,
showSpinner: true,
parent: '#divs_contenidos'
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-9919882-7', // Change to your Google Analytics ID
anonymize: false
}
},
`gatsby-transformer-documentationjs`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `source`,
path: `./src`
}
}
]
}