30 lines
512 B
JavaScript
Raw Normal View History

/* MagicMirror² Test config custom calendar
2021-04-22 10:43:10 +02:00
*
* By Rejas
* MIT Licensed.
*/
let config = {
2021-04-22 10:43:10 +02:00
timeFormat: 12,
modules: [
{
module: "calendar",
position: "bottom_bar",
config: {
calendars: [
{
2021-05-02 15:07:02 +02:00
maximumEntries: 6,
maximumNumberOfDays: 3650,
2021-04-22 10:43:10 +02:00
url: "http://localhost:8080/tests/configs/data/calendar_test_recurring.ics"
}
]
}
}
]
};
2021-07-05 00:33:50 +02:00
2021-04-22 10:43:10 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}