Tim Fish
Tim Fish
I had the same error when I had third party cookies disabled. Once I'd allowed them it worked: 
Reading the docs for `@capacitor-community/electron`, once you install it you'll get a `*yourAppDir*/electron/src/index.ts` file added to your project. I haven't had a proper look yet but I'm guessing this is...
Versioning pain aside, I'm guessing we could: - Add `@sentry/electron` as an optional peer dep - Add some code that `init`s the Electron SDK browser code when targeting that platform...
This might be of use: https://github.com/MarshallOfSound/prebuild-this
If you're just using the `toHTML` method, you'll only need this: ```typescript declare module "markdown" { var markdown: { toHTML(markdown: string): string; } } ```
It's currently possible to catch errors via `onError` passed to `start`: ```ts import { start } from "$fresh/server.ts"; import manifest from "./fresh.gen.ts"; await start(manifest, { onError: (error) => { //...
Some of these APIs should just be stubbed out with sensible defaults. I just hit an issue with `navigator.hardwareConcurrency` not existing.
Let me see if I'm understanding this correctly... `useUrlFragmentHash: false` stops Aurelia from prepending URLs with hashes? So, in a standard web setup, the server would be configured to always...
It [looks like there's talk of WinterCG TypeScript definitions](https://github.com/microsoft/TypeScript/issues/49145) but they don't appear to have been added. Having a `lib.wintercg.d.ts` in TypeScript would probably be a prerequisite to ensuring proper...
The first step in supporting other runtimes is getting `core`, `hub`, `types` and `utils` compiling without `dom`/`node` types: - [x] - Move `@sentry/hub` code to `@sentry/core` and keep `@sentry/hub` as...