-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
125 lines (124 loc) · 4.15 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// const path = require(`path`);
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
author: `Jake Hopking`,
description: `The UI Therapy podcast is about cutting through the cacophony of differing opinions about which method, framework or language is best. Instead I aim to provide listeners with clarity and simplicity by offering battle-tested use cases and recommendations that have their feet firmly rooted in simplicity and longevity. I also aim to interview leading developers, designers and other professionals who can share insights and processes applicable to our community and industry. Basically, despite my 20 years of professional experience, I find myself getting increasingly slowed down and fatigued by all the new ‘must use’ tooling and frameworks that keep springing up — I want to provide some help and group therapy for everyone who finds themselves increasingly paralysed by language, framework or methodology analysis.`,
keywords: `user interface, podcast, design, development, programming, coding, code, ui, user experience, ux, framework, interviews, expertise`,
rss: `https://feeds.buzzsprout.com/1180283.rss`,
siteUrl: `https://uitherapy.fm`,
subTitle: `The podcast for designers, developers and independent thinkers`,
title: `UI Therapy`,
url: `https://uitherapy.fm`,
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-100706005-3`,
head: true,
anonymize: true,
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Merriweather\:300,300i,400,400i,700,700i`,
`Source Sans\:200,300,300i,400i,600,600i,700`,
`Open Sans Condensed\:300,300i,700,700i`,
],
display: 'swap',
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
defaultLayouts: {
default: `${__dirname}/src/layouts/layout-default.js`,
},
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1200,
disableBgImageOnAlpha: true,
backgroundColor: 'transparent',
quality: 85,
},
},
// {
// resolve: `@weknow/gatsby-remark-twitter`,
// options: {
// // debug: true,
// align: `center`,
// theme: `dark`,
// },
// },
],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images/`,
// path: path.join(__dirname, `src`, `images`),
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
// Add a collection called "episodes" that looks
// for files in episodes/
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'episodes',
path: `${__dirname}/src/content/episodes/`,
// path: path.join(__dirname, `src`, `content`, `episodes`),
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'journal',
path: `${__dirname}/src/content/journal/`,
// path: path.join(__dirname, `src`, `content`, `episodes`),
},
},
{
resolve: `gatsby-plugin-sitemap`,
options: {
// Exclude specific pages or groups of pages using glob parameters
// See: https://github.com/isaacs/minimatch
// The example below will exclude the single `path/to/page` and all routes beginning with `category`
exclude: [`/my-files/`],
},
},
`gatsby-plugin-emotion`,
`gatsby-plugin-instagram`,
`gatsby-plugin-sass`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-twitter`,
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
],
};