2021-02-12 03:50:39 +03:00
|
|
|
{
|
2022-05-03 18:26:16 +03:00
|
|
|
"$schema": "../../tooling/cli/schema.json",
|
2021-02-12 03:50:39 +03:00
|
|
|
"build": {
|
2022-03-24 02:45:43 +03:00
|
|
|
"distDir": ["index.html"],
|
|
|
|
"devPath": ["index.html"],
|
2021-02-12 03:50:39 +03:00
|
|
|
"withGlobalTauri": true
|
|
|
|
},
|
2022-06-22 02:36:26 +03:00
|
|
|
"package": {
|
|
|
|
"productName": "Multi Window",
|
|
|
|
"version": "0.1.0"
|
|
|
|
},
|
2021-02-12 03:50:39 +03:00
|
|
|
"tauri": {
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"identifier": "com.tauri.dev",
|
|
|
|
"icon": [
|
2022-03-24 02:45:43 +03:00
|
|
|
"../.icons/32x32.png",
|
|
|
|
"../.icons/128x128.png",
|
|
|
|
"../.icons/128x128@2x.png",
|
|
|
|
"../.icons/icon.icns",
|
|
|
|
"../.icons/icon.ico"
|
2021-02-12 03:50:39 +03:00
|
|
|
],
|
|
|
|
"resources": [],
|
|
|
|
"externalBin": [],
|
|
|
|
"copyright": "",
|
|
|
|
"category": "DeveloperTool"
|
|
|
|
},
|
|
|
|
"allowlist": {
|
2022-02-06 16:50:45 +03:00
|
|
|
"window": {
|
|
|
|
"create": true
|
|
|
|
}
|
2021-02-12 03:50:39 +03:00
|
|
|
},
|
2021-02-16 07:23:15 +03:00
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"label": "Main",
|
|
|
|
"title": "Tauri - Main",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Secondary",
|
|
|
|
"title": "Tauri - Secondary",
|
|
|
|
"width": 600,
|
|
|
|
"height": 400
|
|
|
|
}
|
|
|
|
],
|
2021-02-12 03:50:39 +03:00
|
|
|
"security": {
|
2022-01-09 17:11:59 +03:00
|
|
|
"csp": "default-src 'self'"
|
2021-04-05 20:51:17 +03:00
|
|
|
},
|
|
|
|
"updater": {
|
|
|
|
"active": false
|
2021-02-12 03:50:39 +03:00
|
|
|
}
|
|
|
|
}
|
2021-07-04 01:48:04 +03:00
|
|
|
}
|