Files
koring-launcher/src-tauri/tauri.conf.json
T

56 lines
1.2 KiB
JSON
Raw Normal View History

2026-06-19 23:50:40 +08:00
{
"$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",
2026-06-20 02:34:10 +08:00
"title": "正在启动",
2026-06-19 23:50:40 +08:00
"url": "/splash.html",
"width": 480,
"height": 320,
"decorations": false,
"transparent": true,
"center": true,
2026-06-20 00:34:26 +08:00
"visible": true,
"resizable": false,
"minWidth": 480,
"maxWidth": 480,
"minHeight": 320,
"maxHeight": 320
2026-06-19 23:50:40 +08:00
},
{
"label": "main",
2026-06-20 02:34:10 +08:00
"title": "Koring Launcher",
2026-06-19 23:50:40 +08:00
"width": 800,
"height": 600,
"decorations": false,
"transparent": true,
"visible": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
2026-06-20 02:34:10 +08:00
"icons/icon.png",
2026-06-19 23:50:40 +08:00
"icons/icon.ico"
],
"externalBin": [
"binaries/koring-sidecar"
]
}
}