mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
22 lines
343 B
JavaScript
22 lines
343 B
JavaScript
/* Magic Mirror Test config sample module alert
|
|
*
|
|
* By rejas
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
modules: [
|
|
{
|
|
module: "alert",
|
|
config: {
|
|
display_time: 1000000,
|
|
welcome_message: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|