We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e5d2e commit e8dd1f8Copy full SHA for e8dd1f8
web/pages/[username]/index.tsx
@@ -23,12 +23,12 @@ export const getStaticProps: GetStaticProps<
23
UserPageProps,
24
{ username: string }
25
> = async (props) => {
26
- // console.debug('Starting getStaticProps in /[username]')
+ console.log('Starting getStaticProps in /[username]')
27
const {username} = props.params!
28
29
const user = await getUserForStaticProps(db, username)
30
31
- // console.log(user)
+ console.log('getStaticProps', {user})
32
33
if (!user) {
34
return {
0 commit comments