Files
pengcheng-exam-teacher/src-tauri/tauri.conf.json
2025-09-16 18:20:54 +08:00

65 lines
1.4 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "教师端",
"version": "0.1.0",
"identifier": "com.pengcheng.teacherend",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build"
},
"app": {
"windows": [
{
"title": "教师端",
"width": 1200,
"height": 720,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"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"
}
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [],
"resources": {
"binaries/applications": "applications"
}
}
}