mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
22 lines
350 B
JavaScript
22 lines
350 B
JavaScript
|
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: []
|
||
|
};
|
||
|
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|