mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 05:12:33 +00:00
- Introduced @tauri-apps/plugin-deep-link for handling deep link events - Implemented setup for deep link listener in main application entry - Enhanced Login page to support Telegram authentication via deep links - Created utility functions for building and handling deep links - Added configuration for backend URL management - Updated Tauri configuration to support deep link plugin This update enhances the user experience by allowing seamless transitions between web and desktop applications through deep linking.
43 lines
805 B
JSON
43 lines
805 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "tauri-app",
|
|
"version": "0.1.0",
|
|
"identifier": "com.megamind.tauri-app",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "tauri-app",
|
|
"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"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"desktop": {
|
|
"schemes": ["outsourced"]
|
|
}
|
|
}
|
|
}
|
|
}
|