MagicMirror/modules/default/defaultmodules.js

13 lines
473 B
JavaScript
Raw Normal View History

/* MagicMirror² Default Modules List
2021-04-17 16:39:20 +02:00
* Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name.
2016-04-01 17:35:29 +02:00
*
2020-04-28 23:05:28 +02:00
* By Michael Teeuw https://michaelteeuw.nl
2016-04-01 17:35:29 +02:00
* MIT Licensed.
*/
2022-09-21 22:44:59 +02:00
const defaultModules = ["alert", "calendar", "clock", "compliments", "helloworld", "newsfeed", "updatenotification", "weather"];
2016-04-01 17:35:29 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = defaultModules;
}