-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
46 lines (46 loc) · 984 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
41
42
43
44
45
46
module.exports = {
pathPrefix: "/notes",
siteMetadata: {
title: "Notes"
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/markdown/`,
name: "markdown-pages"
}
},
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-prismjs",
options: {
aliases: {
js: "javascript"
}
}
}
]
}
},
"gatsby-plugin-react-helmet",
"gatsby-plugin-react-next",
"gatsby-plugin-catch-links",
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Notes",
short_name: "Notes",
start_url: "./",
background_color: "#ffffff",
theme_color: "#03A9F4",
display: "standalone",
icon: "src/images/icons/favicon512.png"
}
},
"gatsby-plugin-offline"
]
};