File tree Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 14
14
"settings" : {},
15
15
16
16
// Add the IDs of extensions you want installed when the container is created.
17
- "extensions" : [" dbaeumer.vscode-eslint" , " esbenp.prettier-vscode" ],
17
+ "extensions" : [
18
+ " dbaeumer.vscode-eslint" ,
19
+ " esbenp.prettier-vscode" ,
20
+ " github.vscode-pull-request-github"
21
+ ],
18
22
19
23
// Use 'forwardPorts' to make a list of ports inside the container available locally.
20
24
// "forwardPorts": [],
Original file line number Diff line number Diff line change 1
1
# @committed/gatsby-theme-docs example
2
2
3
- See site at https://committed.software/docs
3
+ See site at https://docs. committed.software .
4
4
5
5
The example show the usage and provides instructions for the [ @committed/gatsby-theme-docs ] ( https://github.com/commitd/gatsby-theme-docs ) .
6
6
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ module.exports = {
91
91
author: " Committed" ,
92
92
description: " Documentation built with mdx." ,
93
93
siteUrl: " https://committed.software/docs" ,
94
- docsLocation: " https://github.com/commitd/docs-starter/tree/master/content"
95
94
},
96
95
plugins: [
97
96
{
@@ -113,7 +112,7 @@ module.exports = {
113
112
ignoreIndex: false
114
113
},
115
114
print: {
116
- classification: null
115
+ classification: " OPEN SOURCE "
117
116
reference: " https://committed.software/docs"
118
117
},
119
118
// can omit search when true, as true is the default
Original file line number Diff line number Diff line change 1
1
const { NODE_ENV } = process . env
2
2
3
3
const pathPrefix = ( env ) => {
4
- return env === 'production' ? '/docs' : ''
4
+ // If you have a context path in production set it here e..g /docs
5
+ return env === 'production' ? '' : ''
5
6
}
6
7
7
8
module . exports = {
@@ -10,8 +11,7 @@ module.exports = {
10
11
title : 'Committed Docs Theme' ,
11
12
author : 'Committed' ,
12
13
description : 'Documentation built with mdx.' ,
13
- siteUrl : 'https://committed.software/docs' ,
14
- docsLocation : 'https://github.com/commitd/docs-starter/tree/master/content' ,
14
+ siteUrl : 'https://docs.committed.software' ,
15
15
} ,
16
16
plugins : [
17
17
{
@@ -35,8 +35,8 @@ module.exports = {
35
35
exceptions : [ '/broken' ] ,
36
36
} ,
37
37
print : {
38
- classification : 'OFFICIAL ' ,
39
- reference : 'https://committed.software/docs ' ,
38
+ classification : 'OPEN SOURCE ' ,
39
+ reference : 'https://docs. committed.software' ,
40
40
} ,
41
41
} ,
42
42
} ,
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ module.exports = ({
30
30
) ,
31
31
print : Object . assign (
32
32
{
33
- classification : null ,
34
- reference : null ,
33
+ classification : '' ,
34
+ reference : '' ,
35
35
} ,
36
36
print
37
37
) ,
You can’t perform that action at this time.
0 commit comments