Files
MagicMirror/tests/configs/default.js
T

17 lines
248 B
JavaScript
Raw Normal View History

2023-01-01 18:09:08 +01:00
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
};