Skip to content

v49-vc/v49-homepage

Repository files navigation

V49

This repository holds the Svelte Kit code that compiles to v49.vc.

GitPod

GitPod is the preferred way to get up and running.

Just open this repository in GitPod, and you'll be good to go:

Open in Gitpod

You do not need to do anything else as GitPod will install all dependencies and start the Dev server for you.

If you want to work locally, read on.

Installing

This repository uses pnpm to manage its dependencies. Running Node 18, you can let Node manage it using:

corepack enable

Then, install all dependencies using:

pnpm install

If you do not have postinstall scripts enabled, you also need to manually run its actions after install:

# Generate the `.svelte-kit/` folder, required for TypeScript to work
pnpm svelte-kit sync

Develop locally

To start the development server:

pnpm dev

Building

To build the production version:

pnpm build

You can then preview the production version in a browser:

pnpm preview