Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026
The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.
I ran into this rather puzzling message while working on a Next.js/React app:
TypeError: resolver is not a function
Turned out the solution was very simple.
I was doing some editing and I commented out the default export to component of the API call I was editing:
export default <name>
So, make sure you have a default export and the error will go away.