Files
leptos/projects/tauri-from-scratch/src-tauri/tauri.conf.json
2025-06-13 10:47:24 -04:00

49 lines
1.1 KiB
JSON

{
"identifier": "leptos.chat.app",
"productName": "leptos_tauri_from_scratch",
"version": "0.1.0",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "trunk build --no-default-features -v --features \"csr\"",
"devUrl": "http://127.0.0.1:3000",
"frontendDist": "../dist"
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"externalBin": [],
"icon": ["icons/icon.png"],
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"height": 800,
"resizable": true,
"title": "LeptosChatApp",
"width": 1200
}
]
}
}