mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
25 lines
399 B
JavaScript
25 lines
399 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: {
|
||
|
showSunTimes: true,
|
||
|
showMoonTimes: true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|