forked from GCWing/BitFun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
52 lines (52 loc) · 1.85 KB
/
tauri.conf.json
File metadata and controls
52 lines (52 loc) · 1.85 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "BitFun",
"identifier": "com.bitfun.desktop",
"build": {
"beforeDevCommand": "pnpm run dev:web",
"devUrl": "http://localhost:1422",
"beforeBuildCommand": "pnpm run build:web && pnpm run prepare:mobile-web",
"frontendDist": "../../../dist"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png"
],
"resources": {
"../../mobile-web/dist": "mobile-web/dist"
},
"linux": {
"deb": {
"depends": [
"libwebkit2gtk-4.1-0",
"libgtk-3-0"
],
"files": {
"icons/hicolor/16x16/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/16x16/apps/bitfun-desktop.png",
"icons/hicolor/32x32/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/32x32/apps/bitfun-desktop.png",
"icons/hicolor/48x48/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/48x48/apps/bitfun-desktop.png",
"icons/hicolor/64x64/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/64x64/apps/bitfun-desktop.png",
"icons/hicolor/96x96/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/96x96/apps/bitfun-desktop.png",
"icons/hicolor/128x128/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/128x128/apps/bitfun-desktop.png",
"icons/hicolor/256x256/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/256x256/apps/bitfun-desktop.png",
"icons/hicolor/512x512/apps/bitfun-desktop.png": "/usr/share/icons/hicolor/512x512/apps/bitfun-desktop.png"
},
"postInstallScript": "scripts/post-install-icons.sh"
},
"appimage": {
"bundleMediaFramework": false
}
}
},
"app": {
"windows": [],
"security": {
"csp": null
},
"withGlobalTauri": true
}
}