mirror of
https://github.com/JonasunderscoreJones/blog.jonasjones.dev.git
synced 2025-10-23 03:19:19 +02:00
part of skeleton
This commit is contained in:
parent
b550b19aae
commit
68f6de3e11
24 changed files with 2375 additions and 119 deletions
10
src/routes.ts
Normal file
10
src/routes.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import Home from './routes/Home.svelte';
|
||||
import Lorem from './routes/Lorem.svelte';
|
||||
import NotFound from './routes/NotFound.svelte';
|
||||
|
||||
export default {
|
||||
'/': Home,
|
||||
'/lorem/:repeat': Lorem,
|
||||
// The catch-all route must always be last
|
||||
'*': NotFound
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue