Files
local-transcription/src-tauri/tauri.conf.json

51 lines
1000 B
JSON
Raw Normal View History

{
"productName": "Local Transcription",
"version": "2.0.15",
"identifier": "net.anhonesthost.local-transcription",
"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.icns",
"icons/icon.ico",
"icons/icon.png"
],
"macOS": {
"entitlements": "Entitlements.plist",
"hardenedRuntime": true
},
"windows": {
"digestAlgorithm": "sha256"
}
},
"plugins": {
"shell": {
"open": true
}
}
}