Files
NetMount/src-tauri/tauri.conf.json

84 lines
2.3 KiB
JSON

{
"build": {
"beforeBuildCommand": "pnpm run build",
"beforeDevCommand": "pnpm run dev",
"frontendDist": "../dist",
"devUrl": "http://localhost:5173"
},
"bundle": {
"createUpdaterArtifacts": true,
"targets": ["nsis", "dmg", "app", "deb", "rpm", "appimage"],
"active": true,
"category": "DeveloperTool",
"copyright": "(C) 2024-Present VirtualHotBar",
"shortDescription": "Cloud storage management tools",
"longDescription": "Unified management and mounting of cloud storage facilities",
"resources": ["binaries/**/*"],
"icon": ["img/icons/icon.png", "img/icons/icon.icns", "img/icons/icon.ico"],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"nsis": {
"sidebarImage": "img/nsis/sidebar.bmp",
"headerImage": "img/nsis/header.bmp",
"languages": ["SimpChinese", "English"],
"installerIcon": "img/icons/icon.ico",
"installerHooks": "pack/nsis/hooks.nsh"
}
},
"macOS": {
"entitlements": "pack/macos/entitlements.plist",
"exceptionDomain": "localhost",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"linux": {
"deb": {}
}
},
"productName": "NetMount",
"identifier": "com.vhbs.netmount",
"plugins": {
"updater": {
"endpoints": [
"https://api.hotpe.top/API/NetMount/TauriUpdate?target={{target}}&arch={{arch}}&current_version={{current_version}}"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEJDOUJFQjJBQTRBMzY5ODQKUldTRWFhT2tLdXVidlBlVnVEWHU4bXJFWW5XMEhnVjRUbFVZc0lyTVI1R1hzajB0QUhUaGVuMWQK",
"windows": {
"installMode": "passive"
}
}
},
"app": {
"withGlobalTauri": true,
"macOSPrivateApi": true,
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "NetMount",
"width": 850,
"minHeight": 450,
"minWidth": 700,
"transparent": true,
"decorations": false
}
],
"trayIcon": {
"id": "main",
"iconPath": "img/icons/icon.png",
"iconAsTemplate": true
},
"security": {
"csp": null
}
}
}