Files
koring-launcher/src-tauri/tauri.conf.json
T
2026-06-19 23:50:40 +08:00

54 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "koring-launcher",
"version": "0.1.0",
"identifier": "com.lingke.koring.launcher",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "splashscreen",
"title": "splashscreen",
"url": "/splash.html",
"width": 480,
"height": 320,
"decorations": false,
"transparent": true,
"center": true,
"visible": true
},
{
"label": "main",
"title": "koring-launcher",
"width": 800,
"height": 600,
"decorations": false,
"transparent": true,
"visible": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"binaries/koring-sidecar"
]
}
}