mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
23 lines
355 B
JavaScript
23 lines
355 B
JavaScript
|
let config = {
|
||
|
address: "0.0.0.0",
|
||
|
ipWhitelist: [],
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "compliments",
|
||
|
position: "middle_center",
|
||
|
config: {
|
||
|
compliments: {
|
||
|
evening: ["Evening here"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|