MagicMirror/modules/default/defaultmodules.js

24 lines
486 B
JavaScript
Raw Normal View History

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