initial recommit

This commit is contained in:
2025-04-22 11:30:05 +02:00
parent d37de6d304
commit 9e17369f11
49 changed files with 13964 additions and 3952 deletions

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

@ -0,0 +1,38 @@
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/tooling/cli/schema.json",
"build": {
"beforeDevCommand": "bun run front:dev",
"beforeBuildCommand": "bun run front:build",
"frontendDist": "../dist",
"devUrl": "http://localhost:3000"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "astro-editor",
"mainBinaryName": "astro-editor",
"version": "0.0.0",
"identifier": "com.dzeio.desktop",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "astro-editor",
"width": 800,
"height": 600,
"useHttpsScheme": true
}
]
}
}