Merge pull request #10 from langchain-ai/dqbd/node-env

feat(api): add NODE_ENV: development
This commit is contained in:
David Duong
2025-02-19 18:17:22 +01:00
committed by GitHub
+7 -1
View File
@@ -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",
},
},
);
}