docs(qwik-city) support all request methods (#321)
parent
f37933be60
commit
616afbcd03
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@hono/qwik-city': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
expose qwik city throughout all the request methods instead of only the get
|
|
@ -12,7 +12,7 @@ import { Hono } from 'hono'
|
||||||
|
|
||||||
const app = new Hono()
|
const app = new Hono()
|
||||||
|
|
||||||
app.get('*', qwikMiddleware({ render, qwikCityPlan }))
|
app.all('*', qwikMiddleware({ render, qwikCityPlan }))
|
||||||
|
|
||||||
export default app
|
export default app
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue