@@ -8,13 +8,13 @@ module.exports = {
8
8
docs : {
9
9
path : '../docs' ,
10
10
sidebarPath : require . resolve ( './sidebars.json' ) ,
11
- routeBasePath : '/' ,
11
+ routeBasePath : '/'
12
12
} ,
13
13
theme : {
14
- customCss : require . resolve ( './src/css/custom.css' ) ,
15
- } ,
16
- } ,
17
- ] ,
14
+ customCss : require . resolve ( './src/css/custom.css' )
15
+ }
16
+ }
17
+ ]
18
18
] ,
19
19
projectName : 'redux-toolkit' ,
20
20
baseUrl : '/' ,
@@ -24,86 +24,96 @@ module.exports = {
24
24
title : 'Redux Toolkit' ,
25
25
url : 'https://redux-toolkit.js.org' ,
26
26
customFields : {
27
- repoUrl : 'https://github.com/reduxjs/redux-toolkit' ,
27
+ repoUrl : 'https://github.com/reduxjs/redux-toolkit'
28
28
} ,
29
29
themeConfig : {
30
30
disableDarkMode : true ,
31
31
prism : {
32
- theme : require ( './src/js/monokaiTheme.js' ) ,
32
+ theme : require ( './src/js/monokaiTheme.js' )
33
33
} ,
34
34
footer : {
35
35
style : 'dark' ,
36
36
logo : {
37
37
alt : 'Redux Logo' ,
38
- src : 'img/redux_white.svg' ,
38
+ src : 'img/redux_white.svg'
39
39
} ,
40
40
links : [
41
41
{
42
42
title : 'Docs' ,
43
43
items : [
44
44
{
45
45
label : 'Quick Start' ,
46
- to : 'introduction/quick-start' ,
46
+ to : 'introduction/quick-start'
47
47
} ,
48
48
{
49
49
label : 'API Reference' ,
50
- to : 'api/configureStore' ,
51
- } ,
52
- ] ,
50
+ to : 'api/configureStore'
51
+ }
52
+ ]
53
53
} ,
54
54
{
55
55
title : 'Community' ,
56
56
items : [
57
57
{
58
58
label : 'Stack Overflow' ,
59
- href : 'http://stackoverflow.com/questions/tagged/redux' ,
59
+ href : 'http://stackoverflow.com/questions/tagged/redux'
60
60
} ,
61
61
{
62
62
label : 'Discord' ,
63
- href : 'https://discord.gg/0ZcbPKXt5bZ6au5t' ,
64
- } ,
65
- ] ,
63
+ href : 'https://discord.gg/0ZcbPKXt5bZ6au5t'
64
+ }
65
+ ]
66
66
} ,
67
67
{
68
- title : 'Social ' ,
68
+ title : 'More ' ,
69
69
items : [
70
70
{
71
71
label : 'GitHub' ,
72
- href : 'https://www.github.com/reduxjs/redux-toolkit' ,
72
+ href : 'https://www.github.com/reduxjs/redux-toolkit'
73
73
} ,
74
- ] ,
75
- } ,
74
+ {
75
+ html : `
76
+ <a href="https://www.netlify.com">
77
+ <img
78
+ src="https://www.netlify.com/img/global/badges/netlify-light.svg"
79
+ alt="Deploys by Netlify"
80
+ />
81
+ </a>
82
+ `
83
+ }
84
+ ]
85
+ }
76
86
] ,
77
- copyright : `Copyright (c) 2015-present Dan Abramov and the Redux documentation authors.` ,
87
+ copyright : `Copyright (c) 2015-present Dan Abramov and the Redux documentation authors.`
78
88
} ,
79
89
image : 'img/redux-logo-landscape.png' ,
80
90
navbar : {
81
91
title : 'Redux Toolkit' ,
82
92
logo : {
83
93
alt : 'Redux Logo' ,
84
- src : 'img/redux.svg' ,
94
+ src : 'img/redux.svg'
85
95
} ,
86
96
links : [
87
97
{
88
98
to : 'introduction/quick-start' ,
89
99
label : 'Quick Start' ,
90
- position : 'right' ,
100
+ position : 'right'
91
101
} ,
92
102
{ to : 'api/configureStore' , label : 'API' , position : 'right' } ,
93
103
{
94
104
href : 'https://www.github.com/reduxjs/redux-starter-kit' ,
95
105
label : 'GitHub' ,
96
- position : 'right' ,
97
- } ,
98
- ] ,
106
+ position : 'right'
107
+ }
108
+ ]
99
109
} ,
100
110
algolia : {
101
111
apiKey : '82d838443b672336bf63cab4772d9eb4' ,
102
112
indexName : 'redux-starter-kit' ,
103
- algoliaOptions : { } ,
113
+ algoliaOptions : { }
104
114
} ,
105
115
googleAnalytics : {
106
- trackingID : 'UA-130598673-3' ,
107
- } ,
108
- } ,
116
+ trackingID : 'UA-130598673-3'
117
+ }
118
+ }
109
119
}
0 commit comments