mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-04-06 01:25:38 +00:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import type { PageContextBuiltInServer } from 'vike/types'
|
|
|
|
export { onBeforeRender }
|
|
|
|
async function onBeforeRender(pageContext: PageContextBuiltInServer) {
|
|
return {
|
|
pageContext: {
|
|
pageProps: pageContext.routeParams,
|
|
},
|
|
}
|
|
}
|