mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import type { PageContextBuiltInServer } from 'vike/types'
|
|
|
|
export default onBeforeRender
|
|
|
|
/* async */ function onBeforeRender(pageContext: PageContextBuiltInServer) {
|
|
return {
|
|
pageContext: {
|
|
pageProps: pageContext.routeParams,
|
|
},
|
|
}
|
|
}
|