Read the statement by Michael Teeuw here.
MMM-Carousel ignoreModules
-
Hi guys,
I have a problem with the module Carousel to ignore some modules.
I get the failure message, that something is wrong the the MM config file, when I put in some Modules to ignore.
Whats wrong with my config file?Sebastian
{ module: 'MMM-Carousel', config: { [clock, calender] } },
-
You have to put the Module names in Quotes like ‘clock’
-
@strawberry-3.141
When I put it in quotes['clock']
I also get the failure message that something is wrong in my config file. -
@shgmongohh said in MMM-Carousel ignoreModules:
Whats wrong with my config file?
It looks like you are missing both the quotes around the module names (as @strawberry-3-141 mentioned) and the name of the configuration option (i.e.
ignoreModules
).Try this version:
{ module: 'MMM-Carousel', config: { ignoreModules: ['clock', 'calendar'] } },
You might also want to consider adding
'alert'
to the ignoreModules list as pointed out by @barnabycolby in his Configuration Options notes -
Thanks a lot.