-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.js
52 lines (51 loc) · 1.49 KB
/
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
const favicon =
"https://rawcdn.githack.com/Shelob9/react-wordpress-testing/c85f38745d862f5f9d14792c4f52881a4568cdfd/triangle-trans.png";
const config = {
gatsby: {
pathPrefix: "/react-wordpress-testing",
siteUrl: "https://shelob9.github.io/react-wordpress-testing",
gaTrackingId: null
},
header: {
logo: favicon,
logoLink: "/",
title: "JavaScript Testing In And Around WordPress",
githubUrl: "https://github.com/shelob9/react-wordpress-testing",
helpUrl: "",
tweetText: "",
links: [{ text: "", link: "" }],
search: {
enabled: false,
indexName: "",
algoliaAppId: process.env.GATSBY_ALGOLIA_APP_ID,
algoliaSearchKey: process.env.GATSBY_ALGOLIA_SEARCH_KEY,
algoliaAdminKey: process.env.ALGOLIA_ADMIN_KEY
}
},
sidebar: {
forcedNavOrder: [
"/introduction",
"/testing-background",
"/testing-react-apps",
"/testing-react-wordpress-blocks",
"/next",
"/about"
],
links: [
{ text: "Josh", link: "https://JoshPress.net" },
{ text: "Saturday Drive", link: "https://saturdaydrive.io" }
],
frontline: false,
ignoreIndex: true
},
siteMetadata: {
title: "JavaScript Testing In And Around WordPress | Josh Pollock",
description:
"Learn how to develop test-driven React apps and WordPress blocks.",
ogImage: null,
docsLocation:
"https://github.com/shelob9/react-wordpress-testing/tree/master/content",
favicon
}
};
module.exports = config;