🚀 meta: initial commit

This commit is contained in:
J / Jacob Babich
2024-04-14 16:18:42 -04:00
commit 786a885973
34 changed files with 419 additions and 0 deletions

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

@@ -0,0 +1,44 @@
{
"build": {
"beforeDevCommand": "trunk serve",
"beforeBuildCommand": "trunk build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "my-knowledgeable-ai",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"windows": [
{
"title": "my-knowledgeable-ai",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}