My blog.
  • mdsvex 45.5%
  • Svelte 26.4%
  • TypeScript 20.7%
  • JavaScript 4%
  • CSS 1.4%
  • Other 2%
Find a file
not-nullptr 2082f1e1ca
All checks were successful
Deploy / build-and-deploy (push) Successful in 25s
fix: styling
2026-06-04 02:40:41 +01:00
.forgejo/workflows STOP IT 2026-06-04 01:00:23 +01:00
src fix: styling 2026-06-04 02:40:41 +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: OG 2026-06-04 02:37:47 +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: OG 2026-06-04 02:37:47 +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 feat: OG 2026-06-04 02:37:47 +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.