From 3fa21922d416bedb0dea9d48aa6216ef919f3ba1 Mon Sep 17 00:00:00 2001 From: Hyunjoon KIM Date: Fri, 31 Oct 2025 16:23:16 +0900 Subject: [PATCH] docs(solid-start): add framework flag to solid start cli commands --- docs/start/framework/solid/getting-started.md | 2 +- docs/start/framework/solid/quick-start.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/start/framework/solid/getting-started.md b/docs/start/framework/solid/getting-started.md index bb69006543f..3ae2bfa640a 100644 --- a/docs/start/framework/solid/getting-started.md +++ b/docs/start/framework/solid/getting-started.md @@ -7,7 +7,7 @@ title: Getting Started Choose one of the following options to start building a _new_ TanStack Start project: -- [TanStack Start CLI] - Just run `npm create @tanstack/start@latest`. Local, fast, and optionally customizable +- [TanStack Start CLI] - Just run `npm create @tanstack/start@latest -- --framework solid`. Local, fast, and optionally customizable - [TanStack Builder](#) (coming soon!) - A visual interface to configure new TanStack projects with a few clicks - [Quick Start Examples](../quick-start) Download or clone one of our official examples - [Build a project from scratch](../build-from-scratch) - A guide to building a TanStack Start project line-by-line, file-by-file. diff --git a/docs/start/framework/solid/quick-start.md b/docs/start/framework/solid/quick-start.md index b62499e7931..fda80d0a2e1 100644 --- a/docs/start/framework/solid/quick-start.md +++ b/docs/start/framework/solid/quick-start.md @@ -8,13 +8,13 @@ title: Quick Start The fastest way to get a Start project up and running is with the cli. Just run ``` -pnpm create @tanstack/start@latest +pnpm create @tanstack/start@latest --framework solid ``` or ``` -npm create @tanstack/start@latest +npm create @tanstack/start@latest -- --framework solid ``` depending on your package manage of choice. You'll be prompted to add things like Tailwind, eslint, and a ton of other options.