2021-05-03 19:16:34 +03:00
|
|
|
{
|
2023-04-07 18:11:05 +03:00
|
|
|
"$schema": "../../core/tauri-config-schema/schema.json",
|
2021-05-03 19:16:34 +03:00
|
|
|
"build": {
|
2023-08-10 16:12:38 +03:00
|
|
|
"distDir": [
|
|
|
|
"index.html"
|
|
|
|
],
|
|
|
|
"devPath": [
|
|
|
|
"index.html"
|
|
|
|
],
|
2021-05-03 19:16:34 +03:00
|
|
|
"beforeDevCommand": "",
|
2021-06-22 23:29:10 +03:00
|
|
|
"beforeBuildCommand": "",
|
|
|
|
"withGlobalTauri": true
|
2021-05-03 19:16:34 +03:00
|
|
|
},
|
2022-06-22 02:36:26 +03:00
|
|
|
"package": {
|
|
|
|
"productName": "State",
|
|
|
|
"version": "0.1.0"
|
|
|
|
},
|
2021-05-03 19:16:34 +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-05-03 19:16:34 +03:00
|
|
|
],
|
|
|
|
"resources": [],
|
|
|
|
"externalBin": [],
|
|
|
|
"copyright": "",
|
|
|
|
"category": "DeveloperTool",
|
|
|
|
"shortDescription": "",
|
|
|
|
"longDescription": "",
|
|
|
|
"deb": {
|
2022-03-31 20:51:17 +03:00
|
|
|
"depends": []
|
2021-05-03 19:16:34 +03:00
|
|
|
},
|
|
|
|
"macOS": {
|
|
|
|
"frameworks": [],
|
|
|
|
"exceptionDomain": ""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"title": "Welcome to Tauri!",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600,
|
|
|
|
"resizable": true,
|
|
|
|
"fullscreen": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"security": {
|
2023-09-08 01:57:16 +03:00
|
|
|
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost https://ipc.localhost"
|
2021-05-03 19:16:34 +03:00
|
|
|
}
|
|
|
|
}
|
2023-08-10 16:12:38 +03:00
|
|
|
}
|