2021-05-21 22:50:40 +03:00
|
|
|
{
|
2023-04-07 18:11:05 +03:00
|
|
|
"$schema": "../../../../../core/tauri-config-schema/schema.json",
|
2021-05-21 22:50:40 +03:00
|
|
|
"build": {
|
|
|
|
"distDir": "../public",
|
|
|
|
"devPath": "../public",
|
|
|
|
"beforeDevCommand": "",
|
2021-06-22 23:29:10 +03:00
|
|
|
"beforeBuildCommand": "",
|
|
|
|
"withGlobalTauri": true
|
2021-05-21 22:50:40 +03:00
|
|
|
},
|
|
|
|
"tauri": {
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"identifier": "com.tauri.dev",
|
|
|
|
"icon": [
|
|
|
|
"../../../../../examples/.icons/32x32.png",
|
|
|
|
"../../../../../examples/.icons/128x128.png",
|
|
|
|
"../../../../../examples/.icons/128x128@2x.png",
|
|
|
|
"../../../../../examples/.icons/icon.icns",
|
|
|
|
"../../../../../examples/.icons/icon.ico"
|
|
|
|
],
|
|
|
|
"resources": [],
|
|
|
|
"externalBin": [],
|
|
|
|
"copyright": "",
|
|
|
|
"category": "DeveloperTool",
|
|
|
|
"shortDescription": "",
|
|
|
|
"longDescription": "",
|
|
|
|
"deb": {
|
2022-03-31 20:51:17 +03:00
|
|
|
"depends": []
|
2021-05-21 22:50:40 +03:00
|
|
|
},
|
|
|
|
"macOS": {
|
|
|
|
"frameworks": [],
|
|
|
|
"exceptionDomain": ""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"allowlist": {
|
|
|
|
"all": false
|
|
|
|
},
|
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"title": "Welcome to Tauri!",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600,
|
|
|
|
"resizable": true,
|
|
|
|
"fullscreen": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"security": {
|
2021-06-15 19:37:24 +03:00
|
|
|
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'"
|
2021-05-21 22:50:40 +03:00
|
|
|
},
|
|
|
|
"updater": {
|
|
|
|
"active": false
|
|
|
|
}
|
|
|
|
}
|
2021-07-04 01:48:04 +03:00
|
|
|
}
|