-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
85 lines (84 loc) · 2.09 KB
/
gatsby-config.js
File metadata and controls
85 lines (84 loc) · 2.09 KB
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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `Como pedir`,
description: `Como pedir de todos os lugares que você gosta e quer ajudar.`,
author: `@comopedir`,
url: `https://comopedir.com.br`,
image: `src/images/ndfac_ico.png`,
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-162138553-1",
},
},
{
resolve: `gatsby-plugin-webfonts`,
options: {
fonts: {
google: [
{
family: "Playfair Display",
variants: ["400", "500", "600", "700"],
},
],
},
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-sass`,
options: {
includePaths: ["src/assets/styles"],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `ÑDFaC.com.br`,
start_url: `/`,
background_color: `#34482b`,
theme_color: `#34482b`,
display: `minimal-ui`,
icon: `src/images/ndfac_ico.png`, // This path is relative to the root of the site.
theme_color_in_head: false,
},
},
{
resolve: `gatsby-plugin-mdx`,
},
{
resolve: `gatsby-source-airtable`,
options: {
apiKey: `${process.env.AIRTABLE_API_KEY}`, // may instead specify via env, see below
concurrency: 5, // default, see using markdown and attachments for more information
tables: [
{
baseId: `${process.env.AIRTABLE_RESTAURANTS_BASE_ID}`,
tableName: `${process.env.AIRTABLE_RESTAURANTS_TABLE_NAME}`,
},
],
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
bucketName: "site.naodeixefecharaconta.com",
},
},
],
}