No description
Find a file
2025-11-30 21:50:26 +05:00
.vscode chore(editor): enable formatOnSave 2025-11-30 21:36:49 +05:00
src feat(layout): add "Open Sans Variable", "Cascadia Code Variable" 2025-11-30 21:50:26 +05:00
static chore(repository): initial commit 2025-11-30 21:36:26 +05:00
.gitignore chore(repository): initial commit 2025-11-30 21:36:26 +05:00
.npmrc chore(repository): initial commit 2025-11-30 21:36:26 +05:00
eslint.config.js chore(repository): initial commit 2025-11-30 21:36:26 +05:00
package.json feat(layout): add "Open Sans Variable", "Cascadia Code Variable" 2025-11-30 21:50:26 +05:00
pnpm-lock.yaml feat(layout): add "Open Sans Variable", "Cascadia Code Variable" 2025-11-30 21:50:26 +05:00
pnpm-workspace.yaml chore(repository): initial commit 2025-11-30 21:36:26 +05:00
README.md chore(repository): initial commit 2025-11-30 21:36:26 +05:00
svelte.config.js chore(repository): initial commit 2025-11-30 21:36:26 +05:00
tsconfig.json chore(repository): initial commit 2025-11-30 21:36:26 +05:00
vite.config.ts chore(repository): initial commit 2025-11-30 21:36:26 +05: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.