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 enableThen, install all dependencies using:
pnpm installIf 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 syncTo start the development server:
pnpm devTo build the production version:
pnpm buildYou can then preview the production version in a browser:
pnpm preview