第一次提交

This commit is contained in:
2025-12-02 17:38:59 +08:00
parent 56f87ecd25
commit e09f1f38e6
40 changed files with 6647 additions and 0 deletions

33
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,33 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "attendance_app",
"version": "0.1.0",
"identifier": "com.attendance.app",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "attendance_app",
"width": 800,
"height": 600
}
],
"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"
]
}
}