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>
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 | |