Youri van Mill

Results 23 issues of Youri van Mill

This way, I can "inject" a SSR Vue app. The implementation, runs the same `transformEntry` for every entry. Maybe move the entry check from the transform? Example: ```ts build({ entry:...

```ts function layouts(routes: any) { return routes.map(r => { const layout = r.meta?.layout ?? 'default' if (r.children !== undefined) { return { ...r, children: layouts(r.children), } } if (r.component !==...

When using `returningId`, it makes my query fail and timeout the Vercel functions I am using. ``` const [ participant ] = await db.insert(participants).values({ eventId: row.id, name: body.name, email: body.email,...