1const Config = require('electron-config') 2 3const config = new Config({ 4 defaults: { 5 darkMode: false, 6 zoomFactor: 1, 7 lastWindowState: { 8 width: 460, 9 height: 700 10 } 11 } 12}) 13module.exports = config 14 15