MagicMirror/modules/default/defaultmodules.js

11 lines
398 B
JavaScript
Raw Permalink Normal View History

/*
* 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
*/
2022-09-21 22:44:59 +02:00
const defaultModules = ["alert", "calendar", "clock", "compliments", "helloworld", "newsfeed", "updatenotification", "weather"];
2016-04-01 17:35:29 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = defaultModules;
}