Christian A. Jacobsen

Results 24 comments of Christian A. Jacobsen

> Although my understanding was that `@auth/sveltekit` was all that was needed to be imported, it turns out that explicitly defining `@auth/core` as a dependency seems to fix the building...

Hey @AbhiPrasad, by adding support for Cloudflare Workers, do you also plan to add support for Cloudflare Pages? I know CF are working on unifying the two platforms, but it's...

Thanks to [this comment](https://github.com/cloudflare/workers-sdk/issues/4968) over at the `cloudflare/kv-asset-handler` repo I was able to get this working by adding the following type declaration file to the root of my Nitro project:...

After some trial and error I've realized that I didn't properly read the very clear output from Nitro's build command. It says `'wrangler dev .output/server/index.mjs --site .output/public --local'`, and while...

We're struggling with the same issue for our whiteboard. For our app, we first mark the element, then the second click makes the element editable. What we observe is that...

@MauriceNino, any chance of rebasing your feature branch and publishing a new image? I'd love to try it out, but it's 200+ commits behind 'main' and I'm sure I want...

This bit my ass as well today, but I solved it with a catch-all route at `src/routes/[...catchAll]/+server.ts` returning 404. ```ts import { error, type RequestHandler } from '@sveltejs/kit' export const...

If you are - like I was - stuck getting this to work with Traefik, then enabling ```yaml ports: web: forwardedHeaders: insecure: true proxyProtocol: insecure: true ``` in the Helm...

I just hit this bug myself. Could this be Windows API change related? I'm on the 0.16.x release because of Tauri 1.x dep for now.

This can move forward with Wrangler's new `getBindingsProxy` or their [just-released](https://github.com/cloudflare/workers-sdk/releases/tag/wrangler%403.28.2) `getPlatformProxy` that provides `cf`, `ctx`, and `caches` as well as the `bindings`. That way we can use Nitro's dev...