Handy/src-tauri/tauri.conf.json
2025-05-16 10:32:25 -07:00

55 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Handy",
"version": "0.1.0",
"identifier": "com.handy.app",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Handy",
"width": 540,
"height": 400,
"minWidth": 460,
"minHeight": 400,
"resizable": true,
"maximizable": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"resources": ["resources/**/*"],
"license": "MIT",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"files": {},
"hardenedRuntime": true,
"minimumSystemVersion": "10.13",
"signingIdentity": "-",
"entitlements": "Entitlements.plist"
},
"linux": {
"rpm": {
"compression": {
"type": "none"
}
}
}
}
}