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 5ad559c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/routes/(profile)/[[tab]]/+page.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,15 @@ export const load = ({ params }) => {
}
}

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

export const prerender = true;
export const trailingSlash = 'never';

0 comments on commit 5ad559c

Please sign in to comment.