Initial commit

This commit is contained in:
2024-12-22 10:53:10 -04:00
parent 7e9f329c9d
commit b9fe6f8882
27 changed files with 5659 additions and 0 deletions

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

@@ -0,0 +1,34 @@
{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "AE2",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../frontend"
},
"app": {
"windows": [
{
"title": "Inventory",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": 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"
]
}
}