mirror of
				https://github.com/MichMich/MagicMirror.git
				synced 2025-11-03 20:55:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* 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 = [
 | 
						|
	"alert",
 | 
						|
	"calendar",
 | 
						|
	"clock",
 | 
						|
	"compliments",
 | 
						|
	"currentweather",
 | 
						|
	"helloworld",
 | 
						|
	"newsfeed",
 | 
						|
	"weatherforecast",
 | 
						|
	"updatenotification"
 | 
						|
];
 | 
						|
 | 
						|
/*************** DO NOT EDIT THE LINE BELOW ***************/
 | 
						|
if (typeof module !== "undefined") {module.exports = defaultModules;}
 |