Skip to content

Commit b82fd90

Browse files
author
Dave Conway-Jones
committed
Update configuration.md with more options
1 parent 8205b8b commit b82fd90

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

docs/user-guide/runtime/configuration.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ The theme of the editor can be changed by using the following settings object. A
137137
page: {
138138
title: "Node-RED",
139139
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"]
141142
},
142143
header: {
143144
title: "Node-RED",
@@ -161,10 +162,24 @@ The theme of the editor can be changed by using the following settings object. A
161162
userMenu: false, // Hide the user-menu even if adminAuth is enabled
162163
login: {
163164
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
164180
}
165181
},
166182

167-
168183
### Dashboard
169184

170185
ui

0 commit comments

Comments
 (0)