forked from BuildingXwithJS/bxjs-weekly
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatsby-config.js
67 lines (67 loc) · 1.9 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
module.exports = {
siteMetadata: {
title: `Unexpected News Podcast`,
description: `Resumen semanal de noticias de JavaScript en español.`,
author: `Ivan Medina - @ivandevp`,
siteUrl: `https://podcast.unexpected.dev`,
image: `https://s3-us-west-2.amazonaws.com/anchor-generated-image-bank/production/podcast_uploaded_episode400/3216485/3216485-1581407940323-0fa7a9a249951.jpg`,
social: {
fbAppId: "112538417095047",
twitter: "@unexpectednewsp",
},
},
plugins: [
`gatsby-plugin-typescript`,
`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: `Unexpected News Podcast`,
short_name: `UNP`,
start_url: `/`,
background_color: `#323330`,
theme_color: `#323330`,
display: `minimal-ui`,
icon: `src/images/logo.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-plugin-emotion`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `episodes`,
path: `${__dirname}/episodios`,
},
},
`gatsby-transformer-remark`,
{
resolve: `gatsby-remark-images`,
},
`gatsby-remark-lazy-load`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: "UA-164308681-1",
},
},
],
}