1
0
Fork
You've already forked site
0
No description
  • TypeScript 44.9%
  • Svelte 34.6%
  • JavaScript 9.8%
  • CSS 8.9%
  • HTML 1.8%
2026年01月01日 12:49:11 +02:00
.vscode no way this works first try 2025年08月13日 22:58:49 +03:00
src i need a proper dev server 2026年01月01日 12:49:11 +02:00
static no way this works first try 2025年08月13日 22:58:49 +03:00
.gitignore no way this works first try 2025年08月13日 22:58:49 +03:00
.npmrc no way this works first try 2025年08月13日 22:58:49 +03:00
eslint.config.js no way this works first try 2025年08月13日 22:58:49 +03:00
LICENSE update 2025年08月14日 09:00:13 +03:00
package.json update 2025年10月02日 16:08:44 +03:00
pnpm-lock.yaml update 2025年10月02日 16:08:44 +03:00
README.md no way this works first try 2025年08月13日 22:58:49 +03:00
svelte.config.js no way this works first try 2025年08月13日 22:58:49 +03:00
tsconfig.json no way this works first try 2025年08月13日 22:58:49 +03:00
vite.config.ts update 2025年10月02日 16:08:44 +03: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.