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

39 lines
786 B
JSON
Raw Normal View History

2025-08-12 23:36:04 +08:00
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "teacher-end",
"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": [
{
"title": "teacher-end",
"width": 1280,
"height": 720,
"resizable": true,
"fullscreen": false,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}