Question

Lovable app is slow to load, 6 seconds on a good connection

Solved · 5 views · asked by noor_builds · edited

It's a small CRUD app. Six seconds until anything shows.

What I’ve tried

Asked Lovable to optimize. It added a loading spinner.

Comment

1 answer

Marked as helpful by the asker
dev_ana · edited

A spinner is the AI admitting defeat. Open DevTools → Network: I bet you see one 5 MB JavaScript bundle. Lovable imports whole icon and chart libraries. Ask it specifically: 'Import only the icons we use from lucide-react by name. Lazy-load the chart component with React.lazy.' Those two usually cut 70%.

Comment