Files
note-gen/src-tauri/tauri.conf.json
2026-06-16 17:23:08 +08:00

79 lines
2.0 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "NoteGen",
"version": "0.29.2",
"identifier": "com.codexu.NoteGen",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3456",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../out"
},
"app": {
"withGlobalTauri": true,
"macOSPrivateApi": true,
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
},
"windows": [
{
"title": "",
"label": "main",
"width": 1360,
"height": 720,
"dragDropEnabled": false,
"titleBarStyle": "Overlay"
}
]
},
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": "all",
"resources": [
"icons"
],
"fileAssociations": [
{
"ext": ["md", "markdown"],
"name": "Markdown Document",
"description": "Markdown document",
"mimeType": "text/markdown",
"role": "Editor"
}
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"iOS": {
"bundleVersion": "0.29.2",
"developmentTeam": "RGZC4ZTJMU"
},
"macOS": {
"minimumSystemVersion": "10.13",
"signingIdentity": null,
"entitlements": null,
"exceptionDomain": null
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRENURGRUVFREY4M0RGRDkKUldUWjM0UGY3djVkVGQ0aDluR0J6SnBUV2dET0FibXdzVmdTL2hIM21QQ1NCS3R2enllUStSd2oK",
"endpoints": [
"http://api.upgrade.toolsetlink.com/v1/tauri/upgrade?tauriKey=tyEi-iLVFxnRhGc9c_xApw&versionName={{current_version}}&appointVersionName=&devModelKey=&devKey=&target={{target}}&arch={{arch}}",
"https://github.com/codexu/note-gen/releases/latest/download/latest.json"
],
"createUpdaterArtifacts": true,
"dangerousInsecureTransportProtocol": true
}
}
}