Skip to content

Commit

Permalink
Updated tauri config file
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoroney committed Nov 18, 2024
1 parent a8ee44d commit b17894e
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions AutoSubs/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "AutoSubs",
"version": "0.1.0",
"identifier": "com.autosubs.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "AutoSubs",
"width": 780,
"height": 680,
"closable": true
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"/Library/Application Support/Blackmagic Design/DaVinci Resolve/Fusion/Scripts/Utility/**",
"$DESKTOP/**",
"$DOCUMENT/**",
"$DOWNLOAD/**"
]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
}
}

0 comments on commit b17894e

Please sign in to comment.