Files
pengcheng-exam-teacher/src-tauri/tauri.conf.json

65 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2025-08-12 23:36:04 +08:00
{
"$schema": "https://schema.tauri.app/config/2",
2025-09-16 18:20:54 +08:00
"productName": "教师端",
2025-08-12 23:36:04 +08:00
"version": "0.1.0",
2025-08-15 15:33:15 +08:00
"identifier": "com.pengcheng.teacherend",
2025-08-12 23:36:04 +08:00
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
2025-08-15 15:33:15 +08:00
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build"
2025-08-12 23:36:04 +08:00
},
"app": {
"windows": [
{
2025-09-16 18:20:54 +08:00
"title": "教师端",
"width": 1200,
2025-08-12 23:36:04 +08:00
"height": 720,
2025-09-16 18:20:54 +08:00
"minWidth": 800,
"minHeight": 600,
2025-08-12 23:36:04 +08:00
"resizable": true,
"fullscreen": false,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
2025-09-16 18:20:54 +08:00
"windows": {
"allowDowngrades": true,
"certificateThumbprint": null,
"digestAlgorithm": null,
"nsis": {
"languages": ["SimpChinese"],
"displayLanguageSelector": true,
"installMode": "perMachine"
},
"signCommand": null,
"timestampUrl": null,
"tsp": false,
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
"wix": {
"language": "zh-CN"
}
},
2025-08-12 23:36:04 +08:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
2025-09-16 18:20:54 +08:00
],
"externalBin": [],
"resources": {
"binaries/applications": "applications"
}
2025-08-12 23:36:04 +08:00
}
}