A homepage for my domain
  • Svelte 58.4%
  • TypeScript 21.2%
  • CSS 14%
  • HTML 6.4%
Find a file
Ewercik 71b49637b3
All checks were successful
Build and deploy / build-and-deploy (push) Successful in 11s
Minor changes
2026-08-05 23:13:03 +02:00
.forgejo/workflows Switched to npm; Added forgejo deployment workfolw 2026-08-05 22:55:44 +02:00
.vscode Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
src Minor changes 2026-08-05 23:13:03 +02:00
static Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
.gitignore Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
.npmrc Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
package-lock.json Solved issues :) 2026-08-05 23:02:31 +02:00
package.json Solved issues :) 2026-08-05 23:02:31 +02:00
README.md Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
tsconfig.json Switched to svelte; Welcome! part of the page and main theme 2026-07-19 21:38:10 +02:00
vite.config.ts Solved issues :) 2026-08-05 23:02:31 +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.16.3 create --template minimal --types ts --install pnpm .

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.