1 {
2 "productName": "tauri-app",
3 "version": "0.1.0",
4 "identifier": "com.tauri.dev",
5 "build": {
6 "beforeDevCommand": "pnpm dev",
7 "beforeBuildCommand": "pnpm build",
8 "devUrl": "http://localhost:1420",
9 "frontendDist": "../dist"
10 },
11 "app": {
12 "withGlobalTauri": false,
13 "security": {
14 "csp": null
15 },
16 "windows": [
17 {
18 "fullscreen": false,
19 "height": 600,
20 "resizable": true,
21 "title": "tauri-app",
22 "width": 800
23 }
24 ]
25 },
26 "bundle": {
27 "active": true,
28 "targets": "all",
29 "icon": [
30 "icons/32x32.png",
31 "icons/128x128.png",
32 "icons/128x128@2x.png",
33 "icons/icon.icns",
34 "icons/icon.ico"
35 ],
36 "iOS": {
37 "developmentTeam": "NADBSNEZWH"
38 }
39 }
40 }