We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad8639 commit 075b490Copy full SHA for 075b490
2 files changed
src/main/store/module/app.ts
@@ -1,9 +1,10 @@
1
import Store from 'electron-store'
2
+import { STORE_NAME } from '..'
3
import type { AppStore } from './types'
4
5
export default new Store<AppStore>({
6
name: 'app',
- cwd: 'massCode',
7
+ cwd: 'v2',
8
9
defaults: {
10
bounds: {}
src/main/store/module/preferences.ts
@@ -1,5 +1,6 @@
import { homedir, platform } from 'os'
import type { PreferencesStore } from './types'
const isDev = process.env.NODE_ENV === 'development'
@@ -15,7 +16,7 @@ const backupPath = isWin ? `${defaultPath}\\backups` : `${defaultPath}/backups`
15
16
17
export default new Store<PreferencesStore>({
18
name: 'preferences',
19
20
21
22
storagePath: defaultPath,
0 commit comments