This commit is contained in:
Bel LaPointe
2023-12-25 21:45:24 -05:00
commit 43eb7e78e0
30 changed files with 4060 additions and 0 deletions

46
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,46 @@
{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "pa-home-video-blue-extractinator",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"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": "pa-home-video-blue-extractinator",
"width": 800,
"height": 600
}
]
}
}