mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 12:12:20 +00:00
see #3358 used command: `find ./ -type f -exec perl -i -0pe 's/\/\*\s*magicmirror.*?\*\/\s*//si' {} \;` This is a first draft, I think we should preserve some of the comments.
17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
let config = {
|
|
modules: [
|
|
{
|
|
module: "helloworld",
|
|
position: "bottom_bar",
|
|
config: {
|
|
text: "Test HelloWorld Module"
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|