From c25128cfd9b512d92440cd4982150a3b50d1f1a5 Mon Sep 17 00:00:00 2001 From: Suren Atoyan Date: Sat, 1 Mar 2025 23:47:55 +0400 Subject: [PATCH] use relative path for root files --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index 138ddde..4422a88 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -10,7 +10,7 @@ import './index.css'; // Importing them with Promise.all (by using HTTP/2/3 multiplexing) we can load them in parallel // and achieve the best possible performance -Promise.all([import('@/root'), import('@/App')]).then(([{ default: render }, { default: App }]) => { +Promise.all([import('./root'), import('./App')]).then(([{ default: render }, { default: App }]) => { render(App); });