YAS/apps/desktop/src-tauri/tauri.conf.json
YetAnotherSuite Dev e5cbb66020 fix: add missing Tauri main.rs binary entry point
Tauri v2 requires both src/lib.rs (library) and src/main.rs (binary).
main.rs calls yetanothersuite_lib::run() as the standard entry point.
2026-07-20 23:07:25 +02:00

33 lines
790 B
JSON

{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-cli/schema.json",
"productName": "YetAnotherSuite",
"version": "0.1.0",
"identifier": "dev.yetanothersuite.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "pnpm --filter @yetanother/web dev",
"beforeBuildCommand": "pnpm --filter @yetanother/web build"
},
"app": {
"windows": [
{
"title": "YetAnotherSuite",
"width": 1200,
"height": 800,
"resizable": true,
"fullscreen": false,
"minWidth": 800,
"minHeight": 600
}
],
"security": {
"csp": null
}
},
"plugins": {
"shell": { "open": true },
"notification": { "all": true }
}
}