From 1c598b842818c70017101de345026c25866a1334 Mon Sep 17 00:00:00 2001 From: wassaf shahzad Date: Tue, 12 Sep 2023 15:54:57 -0700 Subject: [PATCH] added check to remove local import starting from . (#1807) --- reflex/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/reflex/app.py b/reflex/app.py index 579f4e16e..583f6ae03 100644 --- a/reflex/app.py +++ b/reflex/app.py @@ -524,6 +524,7 @@ class App(Base): and i != "focus-visible/dist/focus-visible" and "next" not in i and not i.startswith("/") + and not i.startswith(".") and i != "" } frontend_packages = get_config().frontend_packages