SPB Git forge

spb/websensor

Public
33commits 1branches 0releases
3.4 MBsize
maindefault branch
10 days agolast push
TypeScript 55.4% Python 43.2% SQL 1.2%

web: twitter-image declares its own route config (re-exported runtime broke the production build)

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Simon-Pierre Boucher committed 13 days ago (Sep 11, 2026) parent cc0b6d1

1 changed file +10 −1

modified apps/web/src/app/twitter-image.tsx +10 −1
@@ -1 +1,10 @@
1 −export { default, alt, size, contentType, runtime } from "./opengraph-image";
1 +import OpenGraphImage from "./opengraph-image";
2 +
3 +export const runtime = "nodejs";
4 +export const alt = "WebSensor — The Web is changing. We are watching.";
5 +export const size = { width: 1200, height: 630 };
6 +export const contentType = "image/png";
7 +
8 +export default function TwitterImage() {
9 + return OpenGraphImage();
10 +}
2 11