Hi there.
I love MM but I have a problem where everytime before deploying the container I have to edit the config and set the module calendar to disabled
{ disabled: true,
module: "calendar",
header: "Cal",
position: "bottom_right",
config: {
calendars: [
{
symbol: "calendar-check",
url: "mycal"
}
]
}
},
then after starting the container I go into the container
npm install valid-url
then I get prompt and need to
npm audit fix
After all that I edit the config again and set the module calendar to enabled and everything works fine
{ disabled: false,
module: "calendar",
header: "Cal",
position: "bottom_right",
config: {
calendars: [
{
symbol: "calendar-check",
url: "mycal"
}
]
}
},
Without doing that the container won’t work.
How can I fix that?