The copy of this branch should have at least the v1.0.0-next.480
of @sveltejs/kit
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
- Setup Laravel Sanctum
- You have backend framework? Add your sveltekit guidelines here!
- (Admin UI) Most of the design was based originally from Estevan Maito's