29 lines
484 B
JavaScript
Raw Normal View History

/* MagicMirror² Test config newsfeed module
2021-12-20 13:35:50 +01:00
*
* 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"
2021-12-20 13:35:50 +01:00
}
],
ignoreOldItems: true
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}