### Which project does this relate to? Start ### Describe the bug I created a new TanStack Start app using: ``` npm create @tanstack/start@latest ``` I answered the questions as following: - Tailwind CSS: No - Toolchain: ESLint - Deployment adapter: Nitro - Add-ons: Shadcn, T3Env - Examples: none It says to read the README. The generated README.md says this: ``` Welcome to your new TanStack app! # Getting Started To run this application: npm install npm run start ``` However, there is no npm command named "start". It's actually supposed to be "dev": ```json "scripts": { "dev": "vite dev --port 3000", "build": "vite build", "preview": "vite preview", "test": "vitest run", "lint": "eslint", "format": "prettier", "check": "prettier --write . && eslint --fix" }, ``` ### Your Example Website or App N/A ### Steps to Reproduce the Bug or Issue As above ### Expected behavior Readme should say to run `npm run dev`. ### Screenshots or Videos _No response_ ### Platform - Router / Start Version: [e.g. 1.121.0] - OS: [e.g. macOS, Windows, Linux] - Browser: [e.g. Chrome, Safari, Firefox] - Browser Version: [e.g. 91.1] - Bundler: [e.g. vite] - Bundler Version: [e.g. 7.0.0] ### Additional context _No response_