22 lines
411 B
JavaScript
Raw Normal View History

2021-04-11 20:59:33 +02:00
/* Magic Mirror Test config sample module alert
*
* By rejas
* MIT Licensed.
*/
2021-07-13 23:39:55 +02:00
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
2021-04-11 20:59:33 +02:00
modules: [
{
module: "alert",
config: {
display_time: 1000000,
welcome_message: true
}
}
]
2021-07-05 19:45:58 +02:00
});
2021-07-05 00:33:50 +02:00
2021-04-11 20:59:33 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}