mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
23 lines
405 B
JavaScript
23 lines
405 B
JavaScript
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"],
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
calendars: [
|
||
|
{
|
||
|
url: "http://localhost:8080/tests/mocks/bad_rrule.ics"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|