Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vendor.js 666B

12345678910111213141516171819
  1. /* Magic Mirror
  2. * Vendor File Definition
  3. *
  4. * By Michael Teeuw https://michaelteeuw.nl
  5. * MIT Licensed.
  6. */
  7. const vendor = {
  8. "moment.js": "node_modules/moment/min/moment-with-locales.js",
  9. "moment-timezone.js": "node_modules/moment-timezone/builds/moment-timezone-with-data.js",
  10. "weather-icons.css": "node_modules/weathericons/css/weather-icons.css",
  11. "weather-icons-wind.css": "node_modules/weathericons/css/weather-icons-wind.css",
  12. "font-awesome.css": "css/font-awesome.css",
  13. "nunjucks.js": "node_modules/nunjucks/browser/nunjucks.min.js",
  14. "suncalc.js": "node_modules/suncalc/suncalc.js"
  15. };
  16. if (typeof module !== "undefined") {
  17. module.exports = vendor;
  18. }