Skip to content

Commit 70636ef

Browse files
authored
Fix/broken links (#1396)
1 parent ee13ae9 commit 70636ef

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

src/content/docs/2/guide/build-distribute/index.mdx renamed to src/content/docs/2/guide/build.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Building & Distribution
2+
title: Building
33
---
44

55
import Stub from '@components/Stub.astro';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Existing Project
3+
---
4+
5+
import Stub from '@components/Stub.astro';
6+
7+
<Stub />

src/content/docs/2/guide/create/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import Stub from '@components/Stub.astro';
1616

1717
One thing that makes Tauri so flexible is it's ability to work with virtually any frontend framework. We've created the [`create-tauri-app`](https://github.com/tauri-apps/create-tauri-app) utility to help you create a new Tauri project using one of the officially maintained framework templates.
1818

19-
`create-tauri-app` currently includes templates for vanilla (HTML, CSS and JavaScript without a framework), [Vue.js](https://vuejs.org), [Svelte](https://svelte.dev), [React](https://reactjs.org/), [SolidJS](https://www.solidjs.com/), [Angular](https://angular.io/), [Preact](https://preactjs.com/), [Yew](https://yew.rs/), [Leptos](https://github.com/leptos-rs/leptos), and [Sycamore](https://sycamore-rs.netlify.app/). You can also find or add your own community templates and frameworks in the [Awesome Tauri repo](#).
19+
`create-tauri-app` currently includes templates for vanilla (HTML, CSS and JavaScript without a framework), [Vue.js](https://vuejs.org), [Svelte](https://svelte.dev), [React](https://reactjs.org/), [SolidJS](https://www.solidjs.com/), [Angular](https://angular.io/), [Preact](https://preactjs.com/), [Yew](https://yew.rs/), [Leptos](https://github.com/leptos-rs/leptos), and [Sycamore](https://sycamore-rs.netlify.app/). You can also find or add your own community templates and frameworks in the [Awesome Tauri repo](https://github.com/tauri-apps/awesome-tauri).
2020

2121
Alternatively, you can [add Tauri to an existing project](/2/guide/create/existing-project) to quickly turn your existing codebase into a Tauri app.
2222

@@ -74,7 +74,7 @@ We use [SolidJS](https://www.solidjs.com) throughout the Tauri documentation and
7474

7575
{/* TODO: Can CTA offer to install the deps? */}
7676

77-
After `create-tauri-app` has complete you can navigate into your project's folder, install dependencies, then use the [Tauri CLI](/reference/cli) to start the development server:
77+
After `create-tauri-app` has complete you can navigate into your project's folder, install dependencies, then use the [Tauri CLI](/2/reference/cli) to start the development server:
7878

7979
<Tabs>
8080
<TabItem label="npm">
@@ -122,9 +122,9 @@ TODO: Image of app here
122122

123123
<Card title="Next Steps" icon="rocket">
124124

125-
- [Tauri Command Line Interface (CLI) Reference](/reference/cli)
126-
- [Learn how to build your Tauri app](/guides/build)
127-
- [Discover plugins to extend Tauri's functionality](/plugins)
125+
- [Tauri Command Line Interface (CLI) Reference](/2/reference/cli)
126+
- [Learn how to build your Tauri app](/2/guide/build)
127+
- [Discover additional features and recipes to extend Tauri](/2/guide/list)
128128

129129
</Card>
130130

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Distributing
3+
---
4+
5+
import Stub from '@components/Stub.astro';
6+
7+
<Stub>
8+
9+
- Distribution and Code Signing for...
10+
- Linux
11+
- macOS
12+
- Windows
13+
- Android `pnpm tauri [ios|android] build`
14+
- iOS
15+
- Updater (link to recipe)
16+
17+
</Stub>

0 commit comments

Comments
 (0)