2022-01-26 23:09:26 +01:00
|
|
|
/* 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.
|
|
|
|
*/
|
2021-04-17 16:39:20 +02:00
|
|
|
const defaultModules = ["alert", "calendar", "clock", "compliments", "currentweather", "helloworld", "newsfeed", "weatherforecast", "updatenotification", "weather"];
|
2016-04-01 17:35:29 +02:00
|
|
|
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
2020-05-11 22:22:32 +02:00
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = defaultModules;
|
|
|
|
}
|