BetterFrame/deploy/docker/nodered-settings.js
Mitchell R 44b0268def fix: nodered settings.js nodesDir → /usr/src/betterframe-nodes
Node-RED only scans userDir/node_modules by default. Setting
nodesDir explicitly tells it to also scan our baked-in path,
which survives the /data volume mount.
2026-05-13 02:00:40 +02:00

9 lines
289 B
JavaScript

module.exports = {
uiHost: "0.0.0.0",
uiPort: Number(process.env.PORT || 1880),
httpAdminRoot: "/nrdp",
httpNodeRoot: "/",
functionGlobalContext: {},
// Extra search paths for custom nodes. BF nodes baked into image at this path.
nodesDir: ["/usr/src/betterframe-nodes"],
};