MagicMirror/modules/default/defaultmodules.js

25 lines
521 B
JavaScript
Raw Normal View History

2016-04-01 17:35:29 +02:00
/* Magic Mirror
* Default Modules List
*
2020-04-28 23:05:28 +02:00
* By Michael Teeuw https://michaelteeuw.nl
2016-04-01 17:35:29 +02:00
* MIT Licensed.
*/
// Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name.
var defaultModules = [
2016-04-05 14:35:11 -04:00
"alert",
"calendar",
"clock",
"compliments",
"currentweather",
"helloworld",
"newsfeed",
2016-10-15 13:08:46 +02:00
"weatherforecast",
"updatenotification",
"weather"
2016-04-01 17:35:29 +02:00
];
/*************** DO NOT EDIT THE LINE BELOW ***************/
2016-04-05 14:35:11 -04:00
if (typeof module !== "undefined") {module.exports = defaultModules;}