-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
36 lines (35 loc) · 934 Bytes
/
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
const path = require("path");
module.exports = {
siteMetadata: {
title: "Placar do Impeachment",
description:
"Saiba como seu deputado votaria se o impeachment de Jair Bolsonaro fosse hoje. Cobre seu representante.",
author: "Davi Ferreira",
},
plugins: [
"gatsby-plugin-react-helmet",
"gatsby-plugin-react-svg",
"gatsby-plugin-use-query-params",
"gatsby-plugin-remove-serviceworker",
"gatsby-transformer-json",
{
resolve: "gatsby-source-filesystem",
options: {
name: "data",
path: path.join(__dirname, `/src/data/`),
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Placar do Impeachment`,
short_name: `forabozo`,
start_url: `/`,
background_color: `#1f4068`,
theme_color: `#54e346`,
display: `minimal-ui`,
icon: `src/images/favicon.png`,
},
},
],
};