forked from conaticus/FileExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathtauri.conf.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Explr",
"version": "0.2.3",
"identifier": "com.explr.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"security": {
"csp": "default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost data:; media-src 'self' asset: http://asset.localhost; frame-src 'self' asset: http://asset.localhost data: blob; object-src 'self' asset: http://asset.localhost data: blob",
"assetProtocol": {
"enable": true,
"scope": ["*/**"]
}
},
"withGlobalTauri": false,
"windows": [
{
"label": "main",
"title": "Explr",
"width": 1200,
"height": 800,
"resizable": true,
"visible": true,
"fullscreen": false
}
]
},
"bundle": {
"active": true,
"targets": ["deb", "rpm", "dmg", "msi"],
"icon": ["icons/logo_32x32.png", "icons/logo_128x128.png", "icons/logo.icns", "icons/logo.ico"],
"windows": {
"wix": {
"language": "en-US"
},
"nsis": {
"installMode": "perMachine"
}
},
"macOS": {
"dmg": {
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
},
"windowSize": {
"height": 400,
"width": 660
}
},
"files": {},
"hardenedRuntime": true,
"minimumSystemVersion": "10.13",
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null,
"entitlements": "src-tauri/entitlements.plist"
}
}
}