SvelteKit Projects

The copy of this branch should have at least the v1.0.0-next.480 of @sveltejs/kit

./make and src/route.js

Dynamic way of serving the ./src/routes/admin, we've added a condition inside our src/route.js to pre-determine the folder we want.

# this demonstrates a fake logged in
$> ./make admin dev
$> ./make admin-in dev

# this demonstrates a fake logged out
$> ./make admin-out dev

# this connects to your laravel sanctum
$> ./make admin-laravel-sanctum dev

The above command is similar to what it looks like below

$> ROUTE_FOLDER=admin npm run dev

We've stored more route projects, such as the original demo of sveltekit and my own resumé blog

# this demonstrates my bio and resumé
$> ./make blog dev

# this demonstrates the original sveltekit counter + todo
$> ./make demo dev

Demo

Framework Specific Guidelines

Disclaimer