StealthReader/src-tauri/tauri.conf.json

48 lines
1.3 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "StealthReader",
"version": "../package.json",
"identifier": "StealthReader",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"title": "幽灵阅读器",
"width": 800,
"height": 600,
"transparent": true,
"resizable": false,
"decorations": false,
"alwaysOnTop": false,
"skipTaskbar": false,
"shadow": false,
"visible": true,
"center": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": "all",
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"]
},
"plugins": {
"updater": {
"active": true,
"dialog": true,
"endpoints": ["https://github.com/SparksFly91/StealthReader/releases/latest/download/latest.json"],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDYyQjM0MUIxMDNGRkMxOUQKUldTZHdmOERzVUd6WWx5TzJlczBjU2dWSXdzSjhwVjRtOFJZUDJ2ajB1MHdTS1p3NmhuZlIwNloK"
}
}
}