mirror of
https://github.com/spartanz51/tutabridge.git
synced 2026-06-24 10:54:32 +02:00
Lock html/body/#root to the viewport and hide scrollbars everywhere; the content area fills its space instead of scrolling the page, and the logs stream scrolls within its own pane. Add a min window size so the layout can't be shrunk below where everything fits.
38 lines
833 B
JSON
38 lines
833 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/niceda/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "TutaBridge",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tutabridge.app",
|
|
"build": {
|
|
"frontendDist": "../ui/dist",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeDevCommand": "cd ../ui && npm run dev",
|
|
"beforeBuildCommand": "cd ../ui && npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "TutaBridge",
|
|
"width": 700,
|
|
"height": 520,
|
|
"minWidth": 700,
|
|
"minHeight": 520,
|
|
"resizable": true,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png"
|
|
]
|
|
}
|
|
}
|