feat: init commit

This commit is contained in:
2024-08-19 22:21:59 +08:00
parent 122fa8f03c
commit 7c3459fa24
30 changed files with 4045 additions and 0 deletions

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

@@ -0,0 +1,42 @@
{
"build": {
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "secure-editor-rs",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
"title": "secure-editor-rs",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "me.hatter.secure-editor-rs",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}