Files
NetMount/src-tauri/tauri.conf.json
2024-06-02 18:51:22 +08:00

79 lines
2.0 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"frontendDist": "../dist",
"devUrl": "http://localhost:5173"
},
"bundle": {
"targets": "all",
"active": true,
"category": "DeveloperTool",
"copyright": "(C) 2024-Present VirtualHotBar",
"shortDescription": "Cloud storage management tools",
"longDescription": "Unified management and mounting of cloud storage facilities",
"resources": ["res/bin/**/*"],
"externalBin": [],
"icon": ["img/icons/icon.png", "img/icons/icon.icns", "img/icons/icon.ico"],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"wix": {
"bannerPath": "img/wix/banner.png",
"dialogImagePath": "img/wix/dialog.png",
"language": ["zh-CN", "en-US"],
"template": "pack/wix.wxs"
},
"nsis": {
"sidebarImage": "img/nsis/sidebar.bmp",
"headerImage": "img/nsis/header.bmp",
"languages": ["SimpChinese", "English"],
"installerIcon": "img/icons/icon.ico"
}
},
"macOS": {
"entitlements": "pack/macos/entitlements.plist",
"exceptionDomain": "localhost",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"linux": {
"deb": {}
}
},
"productName": "NetMount",
"identifier": "com.vhbs.netmount",
"plugins": {},
"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
}
}
}