701 B
701 B
created, title, area, files
| created | title | area | files | ||
|---|---|---|---|---|---|
| 2026-04-10T09:23:46.394Z | Investigate slow image loading | ui |
|
Problem
Images seem to load slowly across the app. This could be due to presigned URL generation happening on every request, large original images being served without resizing, or no caching headers on S3 responses.
Solution
Investigate: Are presigned URLs being cached or regenerated on every API call? Are images being served at original resolution? Consider: presigned URL caching with TTL, image thumbnails for list views, appropriate Cache-Control headers on S3 objects, lazy loading for off-screen images.