Read the statement by Michael Teeuw here.
Remove Modules
-
Hey All,
I am a noob at this and trying to work my way through the vast info available.
I have tried reading some topics posted about my issue and not sure if it was addressed and I am that oblivious.
In the config.js file there are apps I do not want to use because others are more appealing to me or I do not have an API key.
Do I just simply erase the module and its script from my config file? Or is there more to it, like accessing the module folder, deleting unwanted module folder and associated nodes?Sry for the weak question
-
Simply remove the modules from the config.js and they won’t load. You can delete the directories if you want to save space, but it’s not needed.
-
@StewartBaird86 Or you can include the property
disabled: true
to the module entry.{ module: "MMM-Module", disabled: true, position: "top_right", config: { } },
Using this moethod, you can quite easily enable it again by just commenting the entry out.
{ module: "MMM-Module", //disabled: true, position: "top_right", config: { } },
-
-
@lavolp3 or just change it to disabled: false