mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-19 13:25:54 -04:00
Merge pull request #10 from langchain-ai/dqbd/node-env
feat(api): add NODE_ENV: development
This commit is contained in:
@@ -53,6 +53,12 @@ For production use, please use LangGraph Cloud.
|
||||
cwd: options.projectCwd,
|
||||
}),
|
||||
],
|
||||
{ stdio: ["inherit", "inherit", "inherit", "ipc"], env: context.env },
|
||||
{
|
||||
stdio: ["inherit", "inherit", "inherit", "ipc"],
|
||||
env: {
|
||||
...context.env,
|
||||
NODE_ENV: "development",
|
||||
},
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user