Skip to content

Commit

Permalink
use relative path for root files
Browse files Browse the repository at this point in the history
  • Loading branch information
suren-atoyan committed Mar 1, 2025
1 parent 44f9204 commit c25128c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down

0 comments on commit c25128c

Please sign in to comment.