My blog.
  • mdsvex 39.8%
  • Svelte 26.3%
  • TypeScript 18.7%
  • CSS 9.5%
  • JavaScript 3.5%
  • Other 2.2%
Find a file
not-nullptr a1db0879e4
All checks were successful
Deploy / build-and-deploy (push) Successful in 26s
fix: add cache breaker
2026-06-04 19:51:34 +01:00
.forgejo/workflows STOP IT 2026-06-04 01:00:23 +01:00
src fix: add cache breaker 2026-06-04 19:51:34 +01:00
static bwaa 2025-04-12 02:05:40 +01:00
.env.example dfgsdfgsdgsdfg 2025-04-12 13:46:44 +01:00
.gitignore bwaa 2025-04-12 02:05:40 +01:00
.npmrc bwaa 2025-04-12 02:05:40 +01:00
.prettierignore bwaa 2025-04-12 02:05:40 +01:00
.prettierrc bwaa 2025-04-12 02:05:40 +01:00
bun.lock feat: redesign! 2026-06-04 19:36:23 +01:00
docker-compose.yml dfgsdfgsdgsdfg 2025-04-12 13:46:44 +01:00
Dockerfile dfgsdfgsdgsdfg 2025-04-12 13:46:44 +01:00
eslint.config.js bwaa 2025-04-12 02:05:40 +01:00
LICENSE Create LICENSE 2025-04-12 23:37:02 +01:00
nginx.conf ? 2025-04-12 02:38:36 +01:00
package.json feat: redesign! 2026-06-04 19:36:23 +01:00
README.md bwaa 2025-04-12 02:05:40 +01:00
svelte.config.js fix: 404 2026-06-04 01:13:04 +01:00
tsconfig.json bwaa 2025-04-12 02:05:40 +01:00
vite.config.ts fix: add cache breaker 2026-06-04 19:51:34 +01: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.