JSON · 952 bytes Raw Blame History
1 {
2 "$schema": "https://schema.tauri.app/config/2",
3 "productName": "WANDA",
4 "version": "0.1.0",
5 "identifier": "com.wanda.app",
6 "build": {
7 "frontendDist": "../frontend/dist",
8 "devUrl": "http://localhost:5173",
9 "beforeDevCommand": "cd ../frontend && npm run dev",
10 "beforeBuildCommand": "cd ../frontend && npm run build"
11 },
12 "app": {
13 "withGlobalTauri": true,
14 "windows": [
15 {
16 "title": "WANDA",
17 "width": 1200,
18 "height": 800,
19 "minWidth": 800,
20 "minHeight": 600,
21 "resizable": true,
22 "fullscreen": false
23 }
24 ],
25 "security": {
26 "csp": null
27 }
28 },
29 "bundle": {
30 "active": true,
31 "targets": "all",
32 "icon": [
33 "icons/32x32.png",
34 "icons/128x128.png",
35 "icons/128x128@2x.png",
36 "icons/icon.icns",
37 "icons/icon.ico"
38 ],
39 "linux": {
40 "appimage": {
41 "bundleMediaFramework": false
42 }
43 }
44 }
45 }