mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
31 lines
557 B
JavaScript
31 lines
557 B
JavaScript
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
hideDuplicates: false,
|
||
|
maximumEntries: 100,
|
||
|
sliceMultiDayEvents: true,
|
||
|
calendars: [
|
||
|
{
|
||
|
maximumEntries: 100,
|
||
|
url: "http://localhost:8080/tests/mocks/sliceMultiDayEvents.ics"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
Date.now = () => {
|
||
|
return new Date("01 Sept 2024 10:38:00 GMT+2:00").valueOf();
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|