mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
30 lines
518 B
JavaScript
30 lines
518 B
JavaScript
/* MagicMirror² Test config newsfeed module
|
|
*
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "newsfeed",
|
|
position: "bottom_bar",
|
|
config: {
|
|
feeds: [
|
|
{
|
|
title: "Rodrigo Ramirez Blog",
|
|
url: "http://localhost:8080/tests/mocks/newsfeed_test.xml"
|
|
}
|
|
],
|
|
prohibitedWords: ["QPanel"],
|
|
showDescription: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|