rqbit/desktop/src-tauri/tauri.conf.json

37 lines
732 B
JSON
Raw Normal View History

2023-12-02 22:24:36 +00:00
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
2023-12-02 22:24:36 +00:00
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2023-12-02 22:24:36 +00:00
},
"productName": "rqbit-desktop",
"mainBinaryName": "rqbit-desktop",
"identifier": "com.rqbit.desktop",
"plugins": {},
"app": {
2023-12-02 22:24:36 +00:00
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "rqbit",
2023-12-16 11:20:25 +00:00
"width": 1024,
2023-12-02 22:24:36 +00:00
"height": 600
}
],
"security": {
"csp": null
}
2023-12-02 22:24:36 +00:00
}
}