No description
  • TypeScript 71.6%
  • Svelte 19.9%
  • JavaScript 7%
  • HTML 1.2%
  • CSS 0.3%
Find a file
2026-04-28 09:07:33 +02:00
.vscode Nonogram start 2026-04-26 13:45:22 +02:00
src Add a lot of stuff lol 2026-04-28 09:07:33 +02:00
static Nonogram start 2026-04-26 13:45:22 +02:00
.gitignore Nonogram start 2026-04-26 13:45:22 +02:00
.npmrc Nonogram start 2026-04-26 13:45:22 +02:00
.prettierignore Nonogram start 2026-04-26 13:45:22 +02:00
.prettierrc Nonogram start 2026-04-26 13:45:22 +02:00
bun.lock Add a lot of stuff lol 2026-04-28 09:07:33 +02:00
eslint.config.js Nonogram start 2026-04-26 13:45:22 +02:00
package.json Add a lot of stuff lol 2026-04-28 09:07:33 +02:00
README.md Nonogram start 2026-04-26 13:45:22 +02:00
svelte.config.js Add a lot of stuff lol 2026-04-28 09:07:33 +02:00
tsconfig.json Add a lot of stuff lol 2026-04-28 09:07:33 +02:00
vite.config.ts Nonogram start 2026-04-26 13:45:22 +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
bun x sv@0.15.1 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:none" --install bun ./

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.