No description
Find a file
2025-07-16 12:45:27 -04:00
docs Fixes to the gh pages build 2025-07-14 11:05:16 -07:00
src More FAQ Responsiveness 2025-07-16 12:45:27 -04:00
static Mobile fixes 2025-07-16 11:48:37 -04:00
.gitignore Move everything 2025-07-14 13:49:34 -04:00
.npmrc Move everything 2025-07-14 13:49:34 -04:00
.prettierignore Move everything 2025-07-14 13:49:34 -04:00
.prettierrc Move everything 2025-07-14 13:49:34 -04:00
bun.lock push 2025-07-14 13:55:40 -04:00
bun.lockb Fix dep resolution 2025-07-14 11:03:29 -07:00
emails.log build 2025-07-14 13:52:49 -04:00
package-lock.json Fix dep resolution 2025-07-14 11:03:29 -07:00
package.json push 2025-07-14 13:55:40 -04:00
README.md Move everything 2025-07-14 13:49:34 -04:00
svelte.config.js push 2025-07-14 13:55:40 -04:00
tsconfig.json Move everything 2025-07-14 13:49:34 -04:00
vite.config.ts Move everything 2025-07-14 13:49:34 -04:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.