MagicMirror/modules/default/defaultmodules.js

13 lines
509 B
JavaScript
Raw Normal View History

2021-04-17 16:39:20 +02:00
/* Magic Mirror Default Modules List
* 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 ***************/
if (typeof module !== "undefined") {
module.exports = defaultModules;
}