Link sharing at the speed of light
Find a file
2025-11-12 21:01:04 -03:00
src Prevent collisions 2025-11-07 19:13:49 -03:00
static Use nunito, closes #3 2025-11-07 15:12:34 -03:00
.gitignore move config file to $lib 2025-11-07 01:36:07 -03:00
.npmrc Initial Commit 2025-10-23 23:42:19 -03:00
default.nix can use nix-shell to initialize valkey server 2025-11-07 12:46:59 -03:00
jsconfig.json Initial Commit 2025-10-23 23:42:19 -03:00
package-lock.json Add Node Adapter 2025-11-12 21:01:04 -03:00
package.json Add Node Adapter 2025-11-12 21:01:04 -03:00
README.md Initial Commit 2025-10-23 23:42:19 -03:00
svelte.config.js Add Node Adapter 2025-11-12 21:01:04 -03:00
vite.config.js Initial Commit 2025-10-23 23:42:19 -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.