Performans: Bundle Size, Tree-shaking, Caching
Bundle boyutu optimizasyonu, dynamic import ile code-splitting, tree-shaking uyumlu kod yazımı, HTTP caching, CDN stratejileri ve client/server side rendering performans taktikleri.
dynamic import örneği
const module = await import('./heavy-module');
module.doWork();