Files
local-transcription/src-tauri/tauri.conf.json
2026-04-06 20:53:15 +00:00

43 lines
810 B
JSON

{
"productName": "Local Transcription",
"version": "1.4.1",
"identifier": "com.localtranscription.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Local Transcription",
"width": 800,
"height": 600,
"minWidth": 640,
"minHeight": 480,
"resizable": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.ico",
"icons/icon.png"
]
},
"plugins": {
"shell": {
"open": true
}
}
}