SvelteKit Performance Optimizer Optimize SvelteKit applications by leveraging the framework's full-stack capabilities for instant server-side rendering and progressive enhancement. Quick Diagnosis Search for these anti-patterns in the codebase: Red flags: - + = slow initial load - for = user sees spinner - or for initial page data = waterfall fetching - Missing in page components = not using load functions 3-Step Conversion Workflow Step 1: Identify Data Requirements Determine what data the page needs on initial render: - Static/rarely-changing data → Universal Load Function (SSR + CSR) - Use…