Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a page for Desktop and Mobile support #3048

Open
wants to merge 1 commit into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ export default defineConfig({
},
link: '/start/',
},
{
label: 'Desktop and Mobile',
link: '/start/desktop-mobile/',
},
{
label: 'Prerequisites',
translations: {
Expand Down
12 changes: 12 additions & 0 deletions src/content/docs/start/desktop-mobile.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: Desktop and Mobile
i18nReady: true
sidebar:
order: 1
---

Tauri supports developing both desktop and mobile apps. Most aspects of developing an app for Tauri remain the same regardless of the platforms you target.

## Platform-specific differences

As you follow along in the guide, we will point out locations where usage may differ. E.g. there is some [mobile-specific setup](https://v2.tauri.app/start/prerequisites/#configure-for-mobile-targets), you will run different commands to run your application when you [develop for mobile vs desktop](https://v2.tauri.app/develop/), and of course these applications will be [distributed in different ways](https://v2.tauri.app/distribute/). Finally, note that [many plugins are supported for specific platforms](https://v2.tauri.app/plugin/#support-table).
Loading