Files
MagicMirror/tests/configs/modules/clock/clock_24hr.js
T

32 lines
512 B
JavaScript
Raw Normal View History

2017-01-31 10:37:03 -08:00
/* Magic Mirror Test config for default clock module
2017-01-30 12:29:32 -03:00
*
2017-01-31 10:37:03 -08:00
* By Sergey Morozov
2017-01-30 12:29:32 -03:00
* MIT Licensed.
*/
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 24,
units: "metric",
electronOptions: {
webPreferences: {
2020-05-11 22:22:32 +02:00
nodeIntegration: true
}
2017-01-30 12:29:32 -03:00
},
modules: [
2017-01-31 10:37:03 -08:00
{
module: "clock",
position: "middle_center"
}
2017-01-30 12:29:32 -03:00
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
2020-05-11 22:22:32 +02:00
if (typeof module !== "undefined") {
module.exports = config;
}