Course lesson
The first step to starting a SvelteKit projects is initialize the app with commands from SvelteKit's website.
The first step to starting a SvelteKit projects is initialize the app with commands from SvelteKit's website.
npm create svelte@latest my-app
cd my-app
npm install
npm run dev -- --openWe'll then test our app is running by adding html to our src/routes/index.svelte route.
Course lesson
The first step to starting a SvelteKit projects is initialize the app with commands from SvelteKit's website.