28 lines
544 B
JavaScript
Raw Normal View History

2021-07-05 19:21:39 +02:00
/* Magic Mirror Test default config for modules
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
2021-07-05 00:33:50 +02:00
let config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 24,
units: "metric",
electronOptions: {
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false
}
},
modules: []
};
2021-07-05 19:21:39 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
2021-07-05 00:33:50 +02:00
if (typeof module !== "undefined") {
module.exports = config;
}