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",
|
2017-09-21 16:38:18 +02:00
|
|
|
"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;}
|