-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
122 lines (105 loc) · 1.8 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
const config = require("./config");
const {
url_path_prefix,
use_demo,
name,
description,
menu_raw,
labels,
use_breadcrumbs,
use_next_page,
lang,
short_name,
start_url,
background_color,
theme_color,
display,
icon,
} = config;
module.exports = {
siteMetadata: {
// TODO: Find a better approach
menu_raw: JSON.stringify(menu_raw),
title: name,
description,
labels,
use_breadcrumbs,
use_next_page,
lang,
url_path_prefix,
},
pathPrefix: url_path_prefix,
plugins: [
{
resolve: "gatsby-source-filesystem",
options: {
path: `${__dirname}/content${use_demo ? "-demo" : ""}`,
name: "content",
},
},
"gatsby-plugin-zopfli",
{
resolve: "gatsby-plugin-manifest",
options: {
name,
description,
short_name,
start_url,
background_color,
theme_color,
display,
icon,
},
},
"gatsby-plugin-offline",
"gatsby-plugin-typescript",
{
resolve: "gatsby-plugin-sharp",
options: {
defaultQuality: 70,
},
},
"gatsby-remark-unwrap-images",
"gatsby-remark-images",
"gatsby-remark-prismjs",
{
resolve: "gatsby-plugin-stylus",
options: {
import: [`${__dirname}/src/utils/variables.styl`],
},
},
{
resolve: "gatsby-plugin-mdx",
options: {
gatsbyRemarkPlugins: [
"gatsby-remark-unwrap-images",
{
resolve: "gatsby-remark-images",
options: {
disableBgImage: true,
maxWidth: 780,
quality: 70,
linkImagesToOriginal: false,
backgroundColor: "none",
},
},
"gatsby-remark-prismjs",
],
},
},
{
resolve: "gatsby-plugin-layout",
options: {
component: `${__dirname}/src/layouts/index.tsx`,
},
},
{
resolve: "gatsby-alias-imports",
options: {
aliases: {
"@": "src",
},
},
},
],
};