opengoal-launcher/src-tauri/tauri.conf.json
2024-05-31 22:29:53 +00:00

80 lines
1.7 KiB
JSON

{
"package": {
"productName": "OpenGOAL-Launcher",
"version": "2.4.6"
},
"build": {
"distDir": "../dist",
"devPath": "http://localhost:3000/",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"tauri": {
"bundle": {
"active": true,
"targets": [
"msi",
"appimage",
"app",
"dmg",
"updater"
],
"identifier": "OpenGOAL-Launcher",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"allowlist": {
"all": true,
"clipboard": {
"writeText": true
},
"fs": {
"scope": [
"$APP/",
"$APP/iso/*",
"$APP/*",
"$APP/**/*",
"$RESOURCE/**/*"
]
},
"protocol": {
"asset": true,
"assetScope": ["**"]
},
"os": {
"all": true
}
},
"windows": [
{
"title": "OpenGOAL Launcher - Splash",
"label": "splashscreen",
"width": 200,
"height": 300,
"center": true,
"decorations": false,
"transparent": true,
"resizable": false,
"fullscreen": false,
"url": "./src/splash/index.html",
"visible": true,
"focus": true
}
]
}
}