-
Notifications
You must be signed in to change notification settings - Fork 36
/
gatsby-config.js
103 lines (103 loc) · 3.35 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
module.exports = {
siteMetadata: {
title: `Ben Awad Blog`,
author: `Ben Awad`,
description: `Information about Ben Awad.`,
siteUrl: `https://benawad.com`,
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-56096342-1",
anonymize: true,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/blog`,
name: `blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/assets`,
name: `assets`,
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-video`,
options: {
width: "100%",
height: "auto",
preload: "auto",
muted: true,
autoplay: true,
playsinline: true,
controls: false,
loop: true,
},
},
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 590,
showCaptions: true,
},
},
`gatsby-remark-embedder`,
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
{
resolve: `gatsby-remark-autolink-headers`,
options: {
className: `header-anchor`,
},
},
{
resolve: `gatsby-remark-vscode`,
// All options are optional. Defaults shown here.
options: {
theme: "Dark+ (default dark)", // Read on for list of included themes. Also accepts object and function forms.
wrapperClassName: "", // Additional class put on 'pre' tag. Also accepts function to set the class dynamically.
injectStyles: true, // Injects (minimal) additional CSS for layout and scrolling
extensions: [], // Third-party extensions providing additional themes and languages
languageAliases: {}, // Map of custom/unknown language codes to standard/known language codes
replaceColor: x => x, // Function allowing replacement of a theme color with another. Useful for replacing hex colors with CSS variables.
getLineClassName: ({
// Function allowing dynamic setting of additional class names on individual lines
content, // - the string content of the line
index, // - the zero-based index of the line within the code fence
language, // - the language specified for the code fence
meta, // - any options set on the code fence alongside the language (more on this later)
}) => "",
logLevel: "info", // Set to 'info' to debug if something looks wrong
},
},
`gatsby-remark-copy-linked-files`,
`gatsby-remark-smartypants`,
],
},
},
`gatsby-plugin-twitter`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
],
}