···11-# sv
22-33-Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
44-55-## Creating a project
66-77-If you're seeing this, you've probably already done this step. Congrats!
88-99-```sh
1010-# create a new project
1111-npx sv create my-app
1212-```
1313-1414-To recreate this project with the same configuration:
1515-1616-```sh
1717-# recreate this project
1818-pnpm dlx sv create --template minimal --types ts --add prettier tailwindcss="plugins:none" sveltekit-adapter="adapter:vercel" --install pnpm ./web
1919-```
2020-2121-## Developing
2222-2323-Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
2424-2525-```sh
2626-npm run dev
2727-2828-# or start the server and open the app in a new browser tab
2929-npm run dev -- --open
3030-```
3131-3232-## Building
3333-3434-To create a production version of your app:
3535-3636-```sh
3737-npm run build
3838-```
3939-4040-You can preview the production build with `npm run preview`.
4141-4242-> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.