Files
doze-translation/src-tauri/tauri.conf.json

27 lines
528 B
JSON
Raw Normal View History

2025-07-28 14:24:52 +08:00
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "doze-translate",
"version": "0.1.0",
"identifier": "com.tsevei.top",
"build": {
"beforeDevCommand": "deno task dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "deno task build",
"frontendDist": "../dist"
},
"app": {
2025-08-25 13:32:14 +08:00
"macOSPrivateApi": true,
2025-07-28 14:24:52 +08:00
"windows": [],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.icns"
]
}
}