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 f42acb7 commit 2350ed4Copy full SHA for 2350ed4
package.json
@@ -9,6 +9,7 @@
9
"build": "tsc && vite build",
10
"preview": "vite preview",
11
"tauri": "tauri",
12
+ "build:dmg": "tauri build --bundles dmg",
13
"check": "tsc --noEmit && cd src-tauri && cargo check"
14
},
15
"dependencies": {
src-tauri/tauri.conf.json
@@ -93,7 +93,12 @@
93
"exceptionDomain": "",
94
"signingIdentity": null,
95
"providerShortName": null,
96
- "entitlements": "entitlements.plist"
+ "entitlements": "entitlements.plist",
97
+ "dmg": {
98
+ "windowSize": { "width": 540, "height": 380 },
99
+ "appPosition": { "x": 140, "y": 200 },
100
+ "applicationFolderPosition": { "x": 400, "y": 200 }
101
+ }
102
}
103
104
0 commit comments