-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
41 lines (40 loc) · 916 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
37
38
39
40
41
require('dotenv').config({ silent: true });
module.exports = {
siteMetadata: {
title: 'raízes',
description: 'o Brasil dos jovens para os jovens',
author: '@brasilraizes',
},
plugins: [
{
resolve: `gatsby-plugin-material-ui`,
options: {
stylesProvider: {
injectFirst: true,
},
},
},
'gatsby-plugin-emotion',
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`poppins\:300,300i,400,400i,600`],
display: 'swap',
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `raízes`,
short_name: `raízes`,
start_url: `/`,
background_color: `#f7f0eb`,
theme_color: `#a2466c`,
display: `standalone`,
icon: `src/assets/icon_512.png`,
},
},
'gatsby-plugin-offline',
],
};