v5 of my website lmao https://v5.jbugel.xyz
  • Svelte 66.9%
  • TypeScript 14.7%
  • CSS 12.9%
  • JavaScript 4.9%
  • HTML 0.6%
Find a file
2026-04-21 22:35:08 +02:00
.vscode first commit 2026-03-31 19:37:16 +02:00
src consistency fix 2026-04-21 22:35:08 +02:00
static first commit 2026-03-31 19:37:16 +02:00
.gitignore added footer & minor improvements 2026-03-31 22:30:21 +02:00
.npmrc first commit 2026-03-31 19:37:16 +02:00
.prettierignore first commit 2026-03-31 19:37:16 +02:00
.prettierrc first commit 2026-03-31 19:37:16 +02:00
bun.lock fixed categories 2026-04-03 07:38:27 +02:00
components.json first commit 2026-03-31 19:37:16 +02:00
eslint.config.js first commit 2026-03-31 19:37:16 +02:00
package.json fixed categories 2026-04-03 07:38:27 +02:00
README.md first commit 2026-03-31 19:37:16 +02:00
svelte.config.js improvements to landing page & blog 2026-04-02 11:42:58 +02:00
tsconfig.json first commit 2026-03-31 19:37:16 +02:00
vite.config.ts first commit 2026-03-31 19:37:16 +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.13.0 create --template minimal --types ts --add prettier eslint sveltekit-adapter="adapter:auto" --install bun test-website

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.