Add Tauri desktop app support

Adds integration with Tauri for building native desktop apps from the web frontend, including CLI option, setup scripts, initialization logic, and post-installation instructions.
This commit is contained in:
Aman Varshney
2025-03-22 15:16:19 +05:30
parent b2feac3f8d
commit 406864f411
9 changed files with 113 additions and 7 deletions

View File

@@ -20,6 +20,11 @@ export async function getAddonsChoice(
label: "PWA (Progressive Web App)",
hint: "Make your app installable and work offline",
},
{
value: "tauri",
label: "Tauri Desktop App",
hint: "Build native desktop apps from your web frontend",
},
],
required: false,
});