-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
104 lines (103 loc) · 2.47 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
const path = require('path')
module.exports = {
siteMetadata: {
title: `Jacob Arriola`,
description: `Website of Jacob Arriola, full stack web developer`,
author: `@jacobarriola`,
twitter: `https://twitter.com/jacobarriola/`,
siteUrl: `https://jacobarriola.com`,
},
flags: {
FAST_DEV: true,
PRESERVE_WEBPACK_CACHE: true,
PRESERVE_FILE_DOWNLOAD_CACHE: true,
},
plugins: [
`gatsby-plugin-catch-links`,
`gatsby-plugin-eslint`,
`gatsby-plugin-react-helmet`,
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: path.join(__dirname, `src`, `images`),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `posts`,
path: `${__dirname}/src/posts`,
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
defaultLayouts: {
default: require.resolve(`./src/components/layout.js`),
},
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-autolink-headers`,
options: {},
},
{
resolve: `gatsby-remark-external-links`,
options: {
target: `_self`,
rel: `nofollow noopener noreferrer`,
},
},
{
resolve: `gatsby-remark-prismjs`,
options: {},
},
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Jacob Arriola`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#4dc0b5`,
display: `minimal-ui`,
icon: `src/images/avatar.jpeg`,
},
},
{
resolve: `gatsby-plugin-postcss`,
options: {
postCssPlugins: [require(`tailwindcss`), require(`autoprefixer`)],
},
},
`gatsby-plugin-offline`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-autolink-headers`,
options: {},
},
{
resolve: `gatsby-remark-external-links`,
options: {
target: `_self`,
rel: `nofollow noopener noreferrer`,
},
},
{
resolve: `gatsby-remark-prismjs`,
options: {},
},
],
},
},
],
}