2022-05-03 18:26:16 +03:00
|
|
|
{
|
2024-02-03 06:39:48 +03:00
|
|
|
"productName": "{{ app_name }}",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"identifier": "com.tauri.dev",
|
2022-05-03 18:26:16 +03:00
|
|
|
"build": {
|
2024-02-03 06:39:48 +03:00
|
|
|
"frontendDist": "{{ frontend_dist }}",
|
|
|
|
"devUrl": "{{ dev_url }}",
|
2022-07-25 16:59:08 +03:00
|
|
|
"beforeDevCommand": "{{ before_dev_command }}",
|
|
|
|
"beforeBuildCommand": "{{ before_build_command }}"
|
2022-05-03 18:26:16 +03:00
|
|
|
},
|
2024-02-03 06:39:48 +03:00
|
|
|
"app": {
|
2022-05-03 18:26:16 +03:00
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"title": "{{ window_title }}",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600,
|
|
|
|
"resizable": true,
|
|
|
|
"fullscreen": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"security": {
|
|
|
|
"csp": null
|
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"icon": [
|
|
|
|
"icons/32x32.png",
|
|
|
|
"icons/128x128.png",
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
"icons/icon.icns",
|
|
|
|
"icons/icon.ico"
|
|
|
|
]
|
2022-05-03 18:26:16 +03:00
|
|
|
}
|
2023-05-13 13:48:28 +03:00
|
|
|
}
|