This commit is contained in:
2024-07-10 20:38:21 +03:00
commit 4be03d9b7f
37 changed files with 4781 additions and 0 deletions

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

@@ -0,0 +1,33 @@
{
"productName": "contextum-app",
"version": "0.0.0",
"identifier": "dev.rainbow.contextum",
"build": {
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build",
"devUrl": "https://localhost:3000"
},
"app": {
"windows": [
{
"title": "contextum-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"
]
}
}