File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,8 @@ The theme of the editor can be changed by using the following settings object. A
137
137
page: {
138
138
title: "Node-RED",
139
139
favicon: "/absolute/path/to/theme/icon",
140
- css: "/absolute/path/to/custom/css/file"
140
+ css: "/absolute/path/to/custom/css/file",
141
+ scripts: [ "/absolute/path/to/custom/script/file", "/another/script/file"]
141
142
},
142
143
header: {
143
144
title: "Node-RED",
@@ -161,10 +162,24 @@ The theme of the editor can be changed by using the following settings object. A
161
162
userMenu: false, // Hide the user-menu even if adminAuth is enabled
162
163
login: {
163
164
image: "/absolute/path/to/login/page/big/image" // a 256x256 image
165
+ },
166
+ logout: {
167
+ redirect: "http://example.com"
168
+ },
169
+ palette: {
170
+ editable: true, // Enable/disable the Palette Manager
171
+ catalogues: [ // Alternative palette manager catalogues
172
+ 'https://catalogue.nodered.org/catalogue.json'
173
+ ],
174
+ theme: [ // Override node colours - rules test against category/type by RegExp.
175
+ { category: ".*", type: ".*", color: "#f0f" }
176
+ ]
177
+ },
178
+ projects: {
179
+ enabled: false // Enable the projects feature
164
180
}
165
181
},
166
182
167
-
168
183
### Dashboard
169
184
170
185
ui
You can’t perform that action at this time.
0 commit comments