mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
ac76a22f38
closes #9181
37 lines
830 B
JSON
37 lines
830 B
JSON
{
|
|
"productName": "{{ app_name }}",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.dev",
|
|
"build": {
|
|
"frontendDist": "{{ frontend_dist }}"{{#if dev_url}},
|
|
"devUrl": "{{ dev_url }}"{{/if}}{{#if before_dev_command}},
|
|
"beforeDevCommand": "{{ before_dev_command }}"{{/if}}{{#if before_build_command}},
|
|
"beforeBuildCommand": "{{ before_build_command }}"{{/if}}
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "{{ window_title }}",
|
|
"width": 800,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"fullscreen": false
|
|
}
|
|
],
|
|
"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"
|
|
]
|
|
}
|
|
}
|