-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtauri.conf.json
More file actions
88 lines (88 loc) · 2.68 KB
/
tauri.conf.json
File metadata and controls
88 lines (88 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://schema.tauri.app/config/2",
"identifier": "com.example.tauri-start-solid",
"productName": "Tauri App",
"version": "0.0.0",
"build": {
"beforeDevCommand": "pnpm dev:ui",
"beforeBuildCommand": "pnpm build:ui",
"frontendDist": "../.output/client",
"devUrl": "http://localhost:1420"
},
"app": {
"macOSPrivateApi": true,
"withGlobalTauri": true,
"security": {
"pattern": {
"use": "brownfield"
},
"csp": null
},
"trayIcon": null,
"windows": []
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"publisher": "Your Company",
"copyright": "Copyright © 2025 Your Company",
"shortDescription": "A Tauri application",
"longDescription": "A Tauri application built with Tauri, SolidJS, and TypeScript",
"createUpdaterArtifacts": false,
"targets": "all",
"macOS": {
"dmg": {
"appPosition": {
"x": 150,
"y": 160
},
"applicationFolderPosition": {
"x": 445,
"y": 160
},
"windowSize": {
"height": 355,
"width": 600
}
},
"minimumSystemVersion": "11.0",
"entitlements": "Info.plist",
"providerShortName": null,
"signingIdentity": null,
"files": {}
},
"windows": {
"allowDowngrades": true,
"certificateThumbprint": null,
"digestAlgorithm": null,
"nsis": null,
"timestampUrl": null,
"tsp": false,
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
"wix": null
},
"resources": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"updater": {
"active": true,
"dialog": true,
"dangerousInsecureTransportProtocol": true,
"windows": {
"installMode": "passive"
},
"endpoints": ["http://localhost:3000/updates/{{target}}/{{arch}}/{{current_version}}"],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDNCQkFCQkFCNzA0RUU2REQKUldUZDVrNXdxN3U2T3pkTytTSWsvY1AyeHoxM2xobEhoMkFORXpLZU1sMm1aWitOYk9RN284R2oK"
}
}
}