(request: Request)
| 63 | |
| 64 | Bun.serve({ |
| 65 | async fetch(request: Request) { |
| 66 | const staticResponse = await staticFile(request); |
| 67 | if (staticResponse) { |
| 68 | return staticResponse; |
| 69 | } |
| 70 | |
| 71 | // Server-side render this request with Qwik City |
| 72 | const qwikCityResponse = await router(request); |
| 73 | if (qwikCityResponse) { |
| 74 | return qwikCityResponse; |
| 75 | } |
| 76 | |
| 77 | // Path not found |
| 78 | return notFound(request); |
| 79 | }, |
| 80 | port, |
| 81 | }); |
searching dependent graphs…