langchain - can't find import when doing: npm run build
I'm using langchain in one of my actions, and it works fine for local dev (i.e. when running
npm run dev
, but when I try and do a build with npm run build
I get the following error:
The first line of that file is "use node"
.
Any ideas on what I'm doing wrong / what the difference is between npm run dev
and npm run build
?
Thanks!8 Replies
It's a nextjs project if that makes any difference
Ok, so it looks like my imports were slightly wrong. Not sure the difference between
npm run dev
and npm run build
here, but being more specific seemed to help.
E.g. this worked
But this didnt:
I'm getting the same issue with openai
import {
ChatCompletionCreateParams,
ChatCompletionCreateParamsNonStreaming,
ChatCompletionMessageParam,
} from "openai/resources/chat/completions";
Npm run dev is to open up your development server in your browser while run build is to build a production ready version of the app
yeah, I get that. I don't understand how to bring in the type imports for production
I've got around it by just using "any" for all the types but it's not ideal

Had to specify all the way down the folder tree, the auto suggested path was not right.
Got it working now 🙂
Not sure, my use of open ai just looks like:
So I'm not importing those types.... Make sure you've got "use node" at the top is a potential gotcha
try adding this to
convex.json
in the root of your project:
to speed up building (it'll be slower the first time but then faster since it doesn't have to re-build langchain)