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