JSON · 759 bytes Raw Blame History
1 {
2 "$schema": "https://schema.tauri.app/config/2",
3 "productName": "claudex",
4 "version": "0.0.0",
5 "identifier": "com.tenseleyflow.claudex",
6 "build": {
7 "frontendDist": "../dist",
8 "devUrl": "http://localhost:1420",
9 "beforeDevCommand": "pnpm dev",
10 "beforeBuildCommand": "pnpm build"
11 },
12 "app": {
13 "windows": [
14 {
15 "title": "claudex",
16 "width": 1280,
17 "height": 820,
18 "minWidth": 960,
19 "minHeight": 600,
20 "titleBarStyle": "Overlay",
21 "hiddenTitle": true
22 }
23 ],
24 "security": {
25 "csp": null
26 }
27 },
28 "bundle": {
29 "active": true,
30 "targets": "all",
31 "icon": [
32 "icons/32x32.png",
33 "icons/128x128.png",
34 "icons/128x128@2x.png"
35 ]
36 }
37 }