Files
sprout-launcher/src-tauri/tauri.conf.json
2026-06-23 21:57:50 +08:00

50 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "SproutLauncher",
"version": "1.0.0",
"identifier": "com.smyhub.sprout-launcher",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"label": "main",
"title": "SproutLauncher",
"width": 1400,
"height": 900,
"decorations": false,
"transparent": true,
"visible": false,
"skipTaskbar": true,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["nsis"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"nsis": {
"installMode": "currentUser",
"languages": ["SimpChinese"],
"displayLanguageSelector": false
}
}
}
}