Skip to content

Commit

Permalink
Profile static routes reservation
Browse files Browse the repository at this point in the history
  • Loading branch information
ironkayman committed Mar 17, 2024
1 parent aa3f0b6 commit 5ac4b61
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/routes/(profile)/[[tab]]/+page.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,14 @@ export const load = ({ params }) => {
}
}

/** @type {import('./$types').EntryGenerator} */
export function entries() {
return [
{ tab: 'links' },
{ tab: 'about' },
{ tab: 'projects' },
{ tab: 'gateway' },
];
}

export const prerender = true;

0 comments on commit 5ac4b61

Please sign in to comment.