diff options
author | Jeremy Chone <jeremy.chone@gmail.com> | 2022-06-20 01:02:15 -0700 |
---|---|---|
committer | Jeremy Chone <jeremy.chone@gmail.com> | 2022-06-20 01:02:15 -0700 |
commit | 051748771895bb040188221c3e4136878dbedb8a (patch) | |
tree | 9492d6020c9294b12b3fd912520746e0df847406 /src-tauri/tauri.conf.json | |
download | FlightCore-051748771895bb040188221c3e4136878dbedb8a.tar.gz FlightCore-051748771895bb040188221c3e4136878dbedb8a.zip |
. initial
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r-- | src-tauri/tauri.conf.json | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 00000000..0e4c7120 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,67 @@ +{ + "$schema": "../node_modules/@tauri-apps/cli/schema.json", + "build": { + "beforeBuildCommand": "", + "beforeDevCommand": "", + "devPath": "http://localhost:8080/", + "distDir": "../dist" + }, + "package": { + "productName": "tauri-app", + "version": "0.1.0" + }, + "tauri": { + "allowlist": { + "all": true + }, + "bundle": { + "active": true, + "category": "DeveloperTool", + "copyright": "", + "deb": { + "depends": [] + }, + "externalBin": [], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ], + "identifier": "com.tauri.dev", + "longDescription": "", + "macOS": { + "entitlements": null, + "exceptionDomain": "", + "frameworks": [], + "providerShortName": null, + "signingIdentity": null + }, + "resources": [], + "shortDescription": "", + "targets": "all", + "windows": { + "certificateThumbprint": null, + "digestAlgorithm": "sha256", + "timestampUrl": "" + } + }, + "security": { + "csp": null + }, + "updater": { + "active": false + }, + "windows": [ + { + "fullscreen": false, + "height": 800, + "width": 576, + "alwaysOnTop": true, + "resizable": true, + "title": "Tauri App" + } + ] + } +}
\ No newline at end of file |