A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
11
fork

Configure Feed

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

Disable cached index.html to avoid stale frontend bundles

j4ckxyz 2f6120a0 be8e70e0

+8 -1
+8 -1
src/server.ts
··· 753 753 } 754 754 app.use(express.json()); 755 755 756 - app.use(express.static(staticAssetsDir)); 756 + app.use( 757 + express.static(staticAssetsDir, { 758 + index: false, 759 + }), 760 + ); 757 761 758 762 interface AuthenticatedUser { 759 763 id: string; ··· 2720 2724 2721 2725 // Serve the frontend for any other route (middleware approach for Express 5) 2722 2726 app.use((_req, res) => { 2727 + res.setHeader('Cache-Control', 'no-store, max-age=0, must-revalidate'); 2728 + res.setHeader('Pragma', 'no-cache'); 2729 + res.setHeader('Expires', '0'); 2723 2730 res.sendFile(path.join(staticAssetsDir, 'index.html')); 2724 2731 }); 2725 2732