i hope i changed it correctly it is all new for me and english is my second Language
--/* Magic Mirror Config Sample
-- *
-- * By Michael Teeuw http://michaelteeuw.nl
-- * MIT Licensed.
-- *
-- * For more information how you can configurate this file
-- * See https://github.com/MichMich/MagicMirror#configuration
-- *
-- */
--
--var config = {
-- address: "localhost", // Address to listen on, can be:
-- // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
-- // - another specific IPv4/6 to listen on a specific interface
-- // - "", "0.0.0.0", "::" to listen on any interface
-- // Default, when address config is left out, is "localhost"
-- port: 8080,
-- ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
-- // or add a specific IPv4 of 192.168.1.5 :
-- // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
-- // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
-- // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
--
-- language: ';'en",
timeFormat: 24,
units: "metric",
--
-- modules: [
-- {
-- module: "alert",
-- },
-- {
-- module: "updatenotification",
-- position: "top_bar"
-- },
-- {
-- module: "clock",
-- position: "top_left"
-- },
-- {
-- module: "MMM-rainfc",
-- position: “top_right”,
-- header: “Rain forecast”,
-- config: {
-- lat: "52.525",
-- lon: "5.71806",
-- width: 200,
-- height: 150,
-- lineWidth: 2,
-- lineColor: "#e0ffe0",
-- fillColor: "#e0ffe0",
-- maxPower: 300,
-- rainText: "Tot: ",
-- noRainText: "Geen regen tot: ",
-- nrOfTimeLabels: 5 // advised values: 2-5
-- }
},
-- {
-- module: "calendar",
-- header: "agenda",
-- position: "top_left",
-- config: {
-- calendars: [
-- {
-- symbol:"calendar",
-- url:"https://calendar.google.com/calendar/ical/8tjs1qac4300edu3evdqsh3gp8%40group.calendar.google.com/public/basic.ics",
-- },
-- symbol: "calendar-check-o ",
-- url: "https://calendar.google.com/calendar/ical/ferrynoiz%40gmail.com/public/basic.ics"
-- }
-- ]
-- }
-- },
-- {
-- module: "compliments",
-- position: "lower_third"
-- },
--
-- module: "newsfeed",
-- position: "bottom_bar",
-- config: {
-- feeds: [
-- {
-- title: "Nu",
-- url: "https://www.nu.nl/rss/Algemeen.xml"
-- }
-- ],
-- showSourceTitle: true,
-- showPublishDate: true
-- }
-- },
-- ]
--
--};
--
--/*************** DO NOT EDIT THE LINE BELOW ***************/
--if (typeof module !== "undefined") {module.exports = config;}