mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-04 06:46:05 +00:00
28 lines
474 B
JavaScript
28 lines
474 B
JavaScript
|
let config = {
|
||
|
address: "0.0.0.0",
|
||
|
ipWhitelist: [],
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
hideDuplicates: false,
|
||
|
maximumEntries: 100,
|
||
|
calendars: [
|
||
|
{
|
||
|
maximumEntries: 100,
|
||
|
url: "http://localhost:8080/tests/mocks/fullday_until.ics"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|