managarten/games/voxel-lava
Wuesteon 9c47119535 Fix wrong type
import, make auth and chat work
2025-12-04 23:25:25 +01:00
..
apps Fix wrong type 2025-12-04 23:25:25 +01:00
.gitignore feat: add new projects bauntown, presi, voxel-lava, whopixels 2025-11-27 15:11:53 +01:00
CLAUDE.md style: auto-format codebase with Prettier 2025-11-27 18:33:16 +01:00
DATABASE.md style: auto-format codebase with Prettier 2025-11-27 18:33:16 +01:00
package.json 🐛 fix(build): remove recursive build scripts from parent packages 2025-12-04 01:59:53 +01:00
pnpm-workspace.yaml feat: integrate presi and voxel-lava into monorepo structure 2025-11-27 15:33:28 +01:00
README.md feat: add new projects bauntown, presi, voxel-lava, whopixels 2025-11-27 15:11:53 +01:00
turbo.json style: auto-format codebase with Prettier 2025-11-27 18:33:16 +01: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.