42 lines
734 B
JavaScript
Raw Normal View History

2020-03-14 21:14:45 +01:00
/* Magic Mirror Test config compliments with date type
*
* By Rejas
* MIT Licensed.
*/
let config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 12,
units: "metric",
electronOptions: {
webPreferences: {
2021-01-30 20:29:59 +01:00
nodeIntegration: true,
2021-07-04 19:21:17 +02:00
enableRemoteModule: true,
contextIsolation: false
}
2020-03-14 21:14:45 +01:00
},
modules: [
{
module: "compliments",
position: "middle_center",
config: {
2020-04-01 10:57:50 +02:00
mockDate: "2020-01-01",
2020-03-14 21:14:45 +01:00
compliments: {
morning: [],
afternoon: [],
evening: [],
"....-01-01": ["Happy new year!"]
2020-03-14 21:14:45 +01:00
}
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}