2023-11-06 15:03:40 +00:00
|
|
|
{
|
|
|
|
"build": {
|
|
|
|
"beforeDevCommand": "",
|
|
|
|
"beforeBuildCommand": "",
|
|
|
|
"devPath": "../src",
|
|
|
|
"distDir": "../src",
|
|
|
|
"withGlobalTauri": true
|
|
|
|
},
|
|
|
|
"package": {
|
|
|
|
"productName": "{{ .Data.appName }}",
|
|
|
|
"version": "{{ .Data.version }}"
|
|
|
|
},
|
|
|
|
"tauri": {
|
|
|
|
"allowlist": {
|
|
|
|
"all": false,
|
|
|
|
"shell": {
|
|
|
|
"all": false,
|
|
|
|
"open": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
2023-11-07 14:15:28 +00:00
|
|
|
"identifier": "com.{{ .Data.shortName }}-tauri.dev",
|
2023-11-06 15:03:40 +00:00
|
|
|
"icon": [
|
|
|
|
"icons/32x32.png",
|
|
|
|
"icons/128x128.png",
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
"icons/icon.icns",
|
|
|
|
"icons/icon.ico"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"security": {
|
|
|
|
"csp": null
|
|
|
|
},
|
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"fullscreen": false,
|
|
|
|
"resizable": true,
|
|
|
|
"title": "{{ .Data.appName }}",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|