Hello,
just starting out with the MagicMirror and doing my first steps with it. One thing I am struggling with is to change the date format, when it is set to “relative”. There I get MM DD YYYY but I would like to have DD MM YYYY.
When changing to absolute I can freely adjust the format. Is there any trick where / how I can do this with the relative format?
Here is a look at my config.js:
{
module: "calendar",
header: "...",
position: "bottom_right",
config: {
fade : true,
timeFormat: "relative",
dateFormat: "DD/MM/YYYY - HH:mm",
calendars: [
{
symbol: "calendar-check-o",
url: "..." }
]
},
},