Kellen Proctor
Kellen Proctor
TTCTheo's Typesafe Cult
Created by zendev on 8/15/2023 in #questions
tRPC SSG Helper w/ new Clerk middleware
a little late to the party here to be helpful, but you haven't imported or initialized the auth object, so as far as createServerSideHelpers is concerned, "auth" is just a word. you'd probably want to put
import {auth} from '@clerk/nextjs/server'

const auth = auth();
import {auth} from '@clerk/nextjs/server'

const auth = auth();
at the top of the file.
6 replies