together_desktop/src-tauri/tauri.conf.json

84 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2023-11-20 00:14:59 +08:00
{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1450",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "together-desktop",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": true,
"fs": {
"scope": [
"*"
]
},
"http": {
"scope": [
"http://localhost:8000/*"
]
},
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.tauri.dev",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 350,
"resizable": false,
"title": "together-desktop",
"width": 450,
"center": true,
"url": "/",
"label": "login",
"decorations": false
}
]
}
}