15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
import { fetchUser } from '#/src/users.js';
|
|
|
|
export async function onBeforeRender(pageContext) {
|
|
const profile = await fetchUser(pageContext.routeParams.username);
|
|
|
|
return {
|
|
pageContext: {
|
|
title: profile.username,
|
|
pageProps: {
|
|
profile, // differentiate from authed 'user'
|
|
},
|
|
},
|
|
};
|
|
}
|