From 359bea1286dee54cf65004144d13c4ef2168418d Mon Sep 17 00:00:00 2001 From: vincent-pli Date: Fri, 25 Aug 2023 22:57:25 +0800 Subject: [PATCH] fix issue, the custom component cannot be load success by setting env variables --- docs/docs/guidelines/custom-component.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guidelines/custom-component.mdx b/docs/docs/guidelines/custom-component.mdx index 816f8356b..4f18d0375 100644 --- a/docs/docs/guidelines/custom-component.mdx +++ b/docs/docs/guidelines/custom-component.mdx @@ -387,7 +387,7 @@ Your structure should look something like this: The recommended way to load custom components is to set the _`LANGFLOW_COMPONENTS_PATH`_ environment variable to the path of your custom components directory. Then, run the Langflow CLI as usual. ```bash -export LANGFLOW_COMPONENTS_PATH=/path/to/components +export LANGFLOW_COMPONENTS_PATH='["/path/to/components"]' langflow ```