This commit is contained in:
Nikita
2024-08-27 16:13:38 +03:00
parent e38c10af6b
commit 31b6cc4b7f
32 changed files with 0 additions and 141 deletions

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

@@ -0,0 +1,34 @@
{
"productName": "learn-anything",
"version": "0.1.0",
"identifier": "xyz.learn-anything",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "learn-anything",
"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"
]
}
}