mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
26 lines
440 B
JavaScript
26 lines
440 B
JavaScript
/* Magic Mirror Test config for default clock module
|
|
*
|
|
* By Sergey Morozov
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "clock",
|
|
position: "middle_center",
|
|
config: {
|
|
showPeriodUpper: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
config = Object.assign(require("../../default.js"), config);
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|