How can I change node-red page title?
I have seen an issue on node-red's github page about this. But I could not understand which file I need to make changes.
Same thing on node-red web site configuration section.
Which file do need to change? Do I need to install a node for editing theme?
From the documentation you link to:
When you run node-red it logs the path to the exact settings file it is using, for example:
Within that file you'll see the default set of settings within a block that starts:
You need to add the
editorTheme
property within that block - remember to keep it a valid javascript statement, so you'll need a comma (,
) between this and the previous setting.For example:
Once you've edited the file, restart Node-RED to pickup the changes.