Description
All frontend routes are eagerly loaded, increasing initial bundle size. Refactor to use dynamic imports with route-based code splitting and prefetching strategies.
Acceptance Criteria
Technical Scope
- frontend/app/
- frontend/components/layout/Sidebar.tsx
- frontend/next.config.ts
- Edge: chunk loading failures on slow networks, SEO implications of dynamic loading
Description
All frontend routes are eagerly loaded, increasing initial bundle size. Refactor to use dynamic imports with route-based code splitting and prefetching strategies.
Acceptance Criteria
Technical Scope