No description
  • Svelte 74.5%
  • TypeScript 12.5%
  • HTML 8.1%
  • JavaScript 2.5%
  • CSS 2.4%
Find a file
Nikola Kubeczkova 1d080d3b39 delete maxBid
2026-06-30 13:15:17 +02:00
agents visual 2026-06-08 19:26:38 +02:00
src delete maxBid 2026-06-30 13:15:17 +02:00
static emails 2026-06-13 12:49:41 +02:00
.env.template env template 2026-06-29 16:09:38 +02:00
.gitignore init 2026-06-07 20:52:43 +02:00
eslint.config.js visual 2026-06-08 19:26:38 +02:00
package.json Bid WIP 2026-06-11 16:58:27 +02:00
pnpm-lock.yaml init 2026-06-07 20:52:43 +02:00
pnpm-workspace.yaml init 2026-06-07 20:52:43 +02:00
README.md init 2026-06-07 20:52:43 +02:00
svelte.config.js init 2026-06-07 20:52:43 +02:00
tsconfig.json init 2026-06-07 20:52:43 +02:00
vite.config.ts init 2026-06-07 20:52:43 +02: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
pnpm dlx sv@0.15.4 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:none" --install pnpm for-sale

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.