-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
40 lines (40 loc) · 963 Bytes
/
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
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: `Gatsby Default Starter`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-transformer-rawhtml`,
`gatsby-plugin-glamor`,
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: `${__dirname}/src/pages/`,
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 690,
},
},
'gatsby-remark-autolink-headers',
// {
// resolve: 'gatsby-remark-responsive-iframe',
// },
// 'gatsby-remark-prismjs',
`${__dirname}/syntax-highlighting/index.js`,
'gatsby-remark-copy-linked-files',
// 'gatsby-remark-smartypants',
'gatsby-plugin-catch-links',
],
},
},
],
}