22 lines
382 B
JavaScript
Raw Normal View History

/* MagicMirror² Test default config for modules
2021-07-05 19:21:39 +02:00
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
exports.configFactory = (options) => {
2021-07-13 23:39:55 +02:00
return Object.assign(
{
electronOptions: {
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false
}
},
2021-07-05 00:33:50 +02:00
2021-07-13 23:39:55 +02:00
modules: []
},
options
);
2021-07-05 00:33:50 +02:00
};