mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-01 05:23:25 +00:00
22 lines
370 B
JavaScript
22 lines
370 B
JavaScript
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "weather",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
type: "hourly",
|
||
|
location: "Berlin",
|
||
|
mockData: '"#####WEATHERDATA#####"',
|
||
|
hourlyForecastIncrements: 2
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|