mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
29 lines
501 B
JavaScript
29 lines
501 B
JavaScript
|
/* Magic Mirror 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/configs/data/feed_test_rodrigoramirez.xml"
|
||
|
}
|
||
|
],
|
||
|
ignoreOldItems: true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|