Files
archived-tauri/examples/web/core/tauri/tauri.conf.json
2023-05-09 16:43:31 -07:00

62 lines
1.3 KiB
JSON

{
"build": {
"beforeBuildCommand": "yarn build:tauri",
"beforeDevCommand": "yarn dev:tauri",
"devPath": "http://localhost:5173",
"distDir": "../../build"
},
"package": {
"productName": "app",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false
},
"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.app",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Tauri Example",
"width": 800
}
]
}
}