mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-30 21:13:49 +00:00
31 lines
562 B
JavaScript
31 lines
562 B
JavaScript
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
hideDuplicates: false,
|
||
|
maximumEntries: 100,
|
||
|
calendars: [
|
||
|
{
|
||
|
maximumEntries: 100,
|
||
|
maximumNumberOfDays: 1, // Just today
|
||
|
url: "http://localhost:8080/tests/mocks/rrule_until.ics"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
Date.now = () => {
|
||
|
return new Date("07 Mar 2024 10:38:00 GMT-07:00").valueOf();
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|