-
Notifications
You must be signed in to change notification settings - Fork 6
/
gatsby-config.js
103 lines (100 loc) · 3.24 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
95
96
97
98
99
100
101
102
103
const fs = require('fs')
const path = require('path')
function replaceAccents(text) {
return text.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
}
module.exports = {
siteMetadata: {
title: `LUC Comparada`,
description: `Esta es una comparación basada en datos del IMPO de los 135 artículos de la LUC que se pretenden anular via referéndum`,
author: `@raulsperoni`,
image: `images/LUC.jpg`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `LUC Comparada`,
short_name: `LUC Comparada`,
description: `Esta es una comparación basada en datos del IMPO de 135 artículos de la LUC, anteriores y vigentes, que se pretenden anular via referéndum.`,
lang: `es`,
start_url: `/`,
background_color: `#034EA2`,
theme_color: `#FFCB05`,
display: `minimal-ui`,
icon: `src/images/icon.png`, // This path is relative to the root of the site.
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/content/luc`,
},
},
{
resolve: 'gatsby-plugin-local-search',
options: {
name: 'articulos',
engine: 'lunr',
query: fs.readFileSync(
path.resolve(__dirname, 'src/localSearchQuery.graphql'),
'utf-8',
),
ref: 'numeroArticulo',
index: ['textoModificado', 'tituloArticulo', 'comentarioArticulo'],
store: ['seccionArticulo', 'capituloArticulo', 'numeroArticulo','tituloArticulo', 'comentarioArticulo'],
normalizer: ({ data }) => {
const comentarios = data.comentarios.nodes
return data.articulos.nodes.map((node) => {
const comentario = comentarios.filter(coment => coment.NRO_ARTICULO === parseInt(node.numeroArticulo))[0]
return {
numeroArticulo: node.numeroArticulo,
capituloArticulo: node.capituloArticulo,
seccionArticulo: node.seccionArticulo,
textoModificado: node.textoModificado ? node.textoModificado.normalize("NFD").replace(/[\u0300-\u036f]/g, "") : "",
tituloArticulo: node.tituloArticulo ? node.tituloArticulo.normalize("NFD").replace(/[\u0300-\u036f]/g, "") : "",
comentarioArticulo: comentario.EXPLICACION
}
})
}
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
"G-LYRHPPN4TP", // Google Analytics / GA
],
gtagConfig: {
anonymize_ip: true,
},
pluginConfig: {
head: true,
},
},
},
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/content/meta`,
},
},
'gatsby-plugin-postcss',
`gatsby-plugin-offline`
],
}