We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to return an image response:
import { Hono } from 'hono'; import { ImageResponse } from 'hono-og'; const app = new Hono(); app.get(':id', () => { return new ImageResponse( ( <div style={{ backgroundColor: 'black', backgroundSize: '150px 150px', height: '100%', width: '100%', display: 'flex', textAlign: 'center', alignItems: 'center', justifyContent: 'center', flexDirection: 'column', flexWrap: 'nowrap', }} > <div style={{ fontSize: 60, fontStyle: 'normal', letterSpacing: '-0.025em', color: 'white', marginTop: 30, padding: '0 120px', lineHeight: 1.4, whiteSpace: 'pre-wrap', }} > hello hono </div> </div> ), ); }); export default app;
and hono throws "TypeError: Cannot read properties of undefined (reading 'format')"
Edit: Using Cloudflare workers
The text was updated successfully, but these errors were encountered:
@zavbala
Try this
import { Hono } from 'hono'; import { ImageResponse } from 'hono-og'; const app = new Hono(); app.get(':id', (c) => { const id = c.req.param("id"); return new ImageResponse( ( <div style={{ backgroundColor: 'black', backgroundSize: '150px 150px', height: '100%', width: '100%', display: 'flex', textAlign: 'center', alignItems: 'center', justifyContent: 'center', flexDirection: 'column', flexWrap: 'nowrap', }} > <div style={{ fontSize: 60, fontStyle: 'normal', letterSpacing: '-0.025em', color: 'white', marginTop: 30, padding: '0 120px', lineHeight: 1.4, whiteSpace: 'pre-wrap', }} > hello hono {id} </div> </div> ), ); }); export default app;
Sorry, something went wrong.
I have the same issue
No branches or pull requests
Trying to return an image response:
and hono throws "TypeError: Cannot read properties of undefined (reading 'format')"
Edit: Using Cloudflare workers
The text was updated successfully, but these errors were encountered: