28 lines
516 B
JavaScript
Raw Normal View History

2019-06-04 10:15:50 +02:00
/* Magic Mirror Test config sample environment
2017-01-30 12:29:32 -03:00
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 24,
units: "metric",
electronOptions: {
webPreferences: {
2021-01-30 20:29:59 +01:00
nodeIntegration: true,
enableRemoteModule: true
}
2017-01-30 12:29:32 -03:00
},
modules: []
2017-01-30 12:29:32 -03:00
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}