This commit is contained in:
Dorian
2026-01-28 00:47:00 +00:00
parent 336704512b
commit 2b01cab400
22658 changed files with 542 additions and 4482792 deletions
+18
View File
@@ -197,6 +197,24 @@ function launchApp(id: string) {
return
}
// Special handling for Penpot - open in new tab on port 9001
if (id === 'penpot' || id === 'penpot-frontend') {
window.open('http://localhost:9001', '_blank', 'noopener,noreferrer')
return
}
// Special handling for Morphos - open in new tab on port 8081
if (id === 'morphos' || id === 'morphos-server') {
window.open('http://localhost:8081', '_blank', 'noopener,noreferrer')
return
}
// Special handling for Nextcloud - open in new tab on port 8086
if (id === 'nextcloud') {
window.open('http://localhost:8086', '_blank', 'noopener,noreferrer')
return
}
// Get the LAN address from the package manifest
const lanAddress = pkg?.installed?.['interface-addresses']?.main?.['lan-address']