-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
79 lines (76 loc) · 1.95 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
const path = require('path');
const siteConfig = require('./config.js');
module.exports = {
pathPrefix: siteConfig.pathPrefix,
siteMetadata: siteConfig.metadata,
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
path: path.resolve(__dirname, 'src', 'assets', 'images'),
name: 'images',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: path.resolve(__dirname, 'content'),
name: 'content',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: path.resolve(__dirname, 'data'),
name: 'data',
},
},
'gatsby-transformer-yaml',
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.md', '.mdx'],
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 960,
withWebp: true,
ignoreFileExtensions: [],
},
},
{
resolve: 'gatsby-remark-responsive-iframe',
options: { wrapperStyle: 'margin-bottom: 1.0725rem' },
},
'gatsby-remark-copy-linked-files',
'gatsby-remark-smartypants',
'gatsby-remark-external-links',
],
},
},
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: siteConfig.metadata.title,
short_name: siteConfig.metadata.title,
start_url: '/',
background_color: '#FFF',
theme_color: '#F7A046',
display: 'standalone',
icon: 'src/assets/images/profile-photo.jpg',
},
},
'gatsby-plugin-offline',
'gatsby-plugin-catch-links',
'gatsby-plugin-react-helmet',
'gatsby-plugin-lodash',
'gatsby-plugin-typescript',
],
};