Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
terkelg
GitHub Repository: terkelg/ramme
Path: blob/master/app/src/main/config.js
106 views
1
const Config = require('electron-config')
2
3
const config = new Config({
4
defaults: {
5
darkMode: false,
6
zoomFactor: 1,
7
lastWindowState: {
8
width: 460,
9
height: 700
10
}
11
}
12
})
13
module.exports = config
14
15