sd-webui-infinite-image-bro.../vue/src-tauri/tauri.conf.json

64 lines
1.2 KiB
JSON

{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:5173",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "Infinite Image Browsing",
"version": "0.16.0"
},
"tauri": {
"allowlist": {
"all": true,
"fs": {
"all": true,
"scope": [
"**"
]
},
"shell": {
"all": true,
"open": true,
"sidecar": true,
"scope": [
{
"name": "iib_api_server",
"sidecar": true
}
]
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.zanllp.iib",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"iib_api_server"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"fileDropEnabled": false,
"title": "Infinite Image Browsing",
"width": 800,
"height": 600,
"maximized": true
}
]
}
}