Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Refactored metadata for contacts, administration, and Ulticards pages to utilize dynamic app names and descriptions. - Introduced new product pages for Ultiai, Ultical, Ulticards, Ultidrive, Ultimail, and Ultimeet with appropriate metadata. - Enhanced layout components to ensure consistent styling and functionality across new product sections. - Updated various components to replace hardcoded labels with dynamic references to improve maintainability and consistency.
52 lines
1.0 KiB
JSON
52 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "UltiCards",
|
|
"version": "0.1.0",
|
|
"identifier": "space.ulti.contacts",
|
|
"build": {
|
|
"frontendDist": "../../../../out",
|
|
"devUrl": "http://localhost:3005",
|
|
"beforeDevCommand": "bash \"$ULTI_REPO_ROOT/mobile/scripts/dev-mobile-tauri.sh\" contacts",
|
|
"beforeBuildCommand": "bash \"$ULTI_REPO_ROOT/mobile/scripts/build-mobile.sh\" contacts"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "UltiCards",
|
|
"url": "/contacts/",
|
|
"width": 420,
|
|
"height": 900
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"category": "Productivity",
|
|
"icon": [
|
|
"icons/icon.png"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"mobile": [
|
|
{
|
|
"host": "space.ulti.app",
|
|
"pathPrefix": [
|
|
"/app/contacts"
|
|
]
|
|
}
|
|
],
|
|
"desktop": {
|
|
"schemes": [
|
|
"ulticontacts"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|