Find a file
2026-03-02 22:32:00 +07:00
src updated things im making 2026-03-02 22:32:00 +07:00
static initial 2026-01-28 07:18:48 +07:00
.gitignore update git ignore 2026-02-01 16:07:28 +00:00
.woodpecker.yml test 2026-02-01 16:04:49 +00:00
build.sh building script 2026-01-28 23:47:38 +07:00
eslint.config.js initial 2026-01-28 07:18:48 +07:00
package.json static build 2026-01-28 07:21:54 +07:00
README.md initial 2026-01-28 07:18:48 +07:00
svelte.config.js static build 2026-01-28 07:21:54 +07:00
tsconfig.json initial 2026-01-28 07:18:48 +07:00
vite.config.ts initial 2026-01-28 07:18:48 +07: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
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv create --template minimal --types ts --add prettier eslint mdsvex --install npm ./

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.