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.

default.js 387B

123456789101112131415161718192021
  1. /* Magic Mirror Test default config for modules
  2. *
  3. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  4. * MIT Licensed.
  5. */
  6. exports.configFactory = function (options) {
  7. return Object.assign(
  8. {
  9. electronOptions: {
  10. webPreferences: {
  11. nodeIntegration: true,
  12. enableRemoteModule: true,
  13. contextIsolation: false
  14. }
  15. },
  16. modules: []
  17. },
  18. options
  19. );
  20. };