mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
26 lines
417 B
JavaScript
26 lines
417 B
JavaScript
|
/* MagicMirror² Test config for default clock module
|
||
|
*
|
||
|
* By Johan Hammar
|
||
|
* MIT Licensed.
|
||
|
*/
|
||
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "clock",
|
||
|
position: "middle_center",
|
||
|
config: {
|
||
|
showTime: true,
|
||
|
showDate: true,
|
||
|
displayType: "analog"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|