[READ-ONLY] Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

Select the types of activity you want to include in your feed.

Bump up preloading

Grace Kind (Jul 13, 2026, 6:04 PM -0500) 93f977ea 8a8d9eeb

+2 -2
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.17.147", 3 + "version": "0.17.148", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+1 -1
src/js/views/home.view.js
··· 283 283 .slice(0, 3); // Up to 3 feeds 284 284 for (const item of itemsToPreload) { 285 285 await dataLayer.requests.loadNextFeedPage(item.uri, { 286 - limit: 5, // Load the 5 first posts 286 + limit: 10, // Load the 10 first posts 287 287 }); 288 288 } 289 289 }