Skip to content
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
2 changes: 1 addition & 1 deletion docs/router/framework/react/how-to/integrate-shadcn-ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This guide covers setting up Shadcn/ui with TanStack Router, including solutions
**Option 1: New project with TanStack Router template**

```bash
npx create-tsrouter-app@latest my-app --template file-router --tailwind --add-ons shadcn
npx @tanstack/cli create my-app --add-ons shadcn
```

**Option 2: Add to existing TanStack Router project**
Expand Down
2 changes: 1 addition & 1 deletion docs/router/framework/react/how-to/setup-ssr.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ title: How to Set Up Server-Side Rendering (SSR)
## Quick Start with TanStack Start

```bash
npx create-tsrouter-app@latest my-app --template start
npx @tanstack/cli create my-app
cd my-app
npm run dev
```
Expand Down
8 changes: 4 additions & 4 deletions docs/router/framework/react/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The fastest way to get started with TanStack Router is to scaffold a new project
[//]: # 'createAppCommand'

```sh
npx create-tsrouter-app@latest
npx @tanstack/cli create
```

[//]: # 'createAppCommand'
Expand All @@ -35,7 +35,7 @@ npm run dev
```

> [!TIP]
> For full details on available options and templates, visit the [`create-tsrouter-app` documentation](https://github.com/TanStack/create-tsrouter-app/tree/main/cli/create-tsrouter-app).
> For full details on available options and templates, visit the [`@tanstack/cli` documentation](https://tanstack.com/cli/latest/docs/quick-start).

## Routing Options

Expand All @@ -48,7 +48,7 @@ The file-based approach is the recommended option for most projects. It automati
[//]: # 'createAppCommandFileBased'

```sh
npx create-tsrouter-app@latest my-app --template file-router
npx @tanstack/cli create my-app
```

[//]: # 'createAppCommandFileBased'
Expand All @@ -60,7 +60,7 @@ If you prefer to define routes programmatically, you can use the code-based rout
[//]: # 'createAppCommandCodeBased'

```sh
npx create-tsrouter-app@latest my-app
npx @tanstack/cli create my-app
```

[//]: # 'createAppCommandCodeBased'
Expand Down
6 changes: 3 additions & 3 deletions docs/router/framework/solid/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace: { 'React': 'Solid', 'react': 'solid' }
[//]: # 'createAppCommand'

```sh
npx create-tsrouter-app@latest --framework solid
npx @tanstack/cli create --framework solid
```

[//]: # 'createAppCommand'
Expand All @@ -21,14 +21,14 @@ npx create-tsrouter-app@latest --framework solid
[//]: # 'createAppCommandFileBased'

```sh
npx create-tsrouter-app@latest my-app --framework solid --template file-router
npx @tanstack/cli create my-app --framework solid
```

[//]: # 'createAppCommandFileBased'
[//]: # 'createAppCommandCodeBased'

```sh
npx create-tsrouter-app@latest my-app --framework solid
npx @tanstack/cli create my-app --framework solid
```

[//]: # 'createAppCommandCodeBased'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The complete code for this tutorial is available on [GitHub](https://github.com/
First, let's create a new TanStack Start project:

```bash
pnpx create-start-app movie-discovery
pnpx @tanstack/cli create movie-discovery
cd movie-discovery
```

Expand Down
5 changes: 1 addition & 4 deletions examples/react/i18n-paraglide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-tsrouter-app"
/>
<meta name="description" content="Web site created using TanStack CLI" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>Create TanStack App - i18n-paraglide</title>
Expand Down
2 changes: 1 addition & 1 deletion examples/react/start-bun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ npx gitpick TanStack/router/tree/main/examples/react/start-bun start-bun
This project was created with TanStack Start:

```bash
bunx create-start-app@latest
bunx @tanstack/cli create
```

Install dependencies:
Expand Down
5 changes: 1 addition & 4 deletions examples/solid/i18n-paraglide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-tsrouter-app"
/>
<meta name="description" content="Web site created using TanStack CLI" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>Create TanStack App - i18n-paraglide</title>
Expand Down
2 changes: 1 addition & 1 deletion examples/solid/start-bun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ An optimized production server for TanStack Start applications using Bun, implem
This project was created with TanStack Start:

```bash
bunx create-start-app@latest
bunx @tanstack/cli create
```

Install dependencies:
Expand Down