Thisper/src-tauri/tauri.conf.json
2026-03-29 21:59:48 -05:00

39 lines
814 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Thisper",
"version": "0.1.0",
"identifier": "com.stan44.thisper",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Thisper",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"publisher": "Stan44",
"copyright": "Copyright © 2026 Stan44. All rights reserved.",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}