Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
motocarota committed Jun 22, 2024
1 parent 67c7518 commit a96026b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/routes/view/[menuId]/+page.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,15 @@ export function load({ params }) {
...customers[params.menuId],
id: params.menuId,
};
}
}

/** @type {import('./$types').EntryGenerator} */
export function entries() {
return [
{ menuId: 'bagni-giovanni' },
{ menuId: 'delfino-bianco-vini' },
{ menuId: 'delfino-bianco-special' },
];
}

export const prerender = true;

0 comments on commit a96026b

Please sign in to comment.