This repository holds the Svelte Kit code that compiles to v49.vc.
GitPod is the preferred way to get up and running.
Just open this repository in GitPod, and you'll be good to go:
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.
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
To start the development server:
pnpm dev
To build the production version:
pnpm build
You can then preview the production version in a browser:
pnpm preview