Thomas Strobl

Results 46 comments of Thomas Strobl

A reproduction for this is included here as well: https://github.com/tom2strobl/extension-js-monorepo

I need to upgrade from beta 9 as well as it started chrome but didnt load the extension anymore (chrome 137 landed) — after upgrading to rc.36 and running the...

@cezaraugusto finally got some time, here you go: https://github.com/tom2strobl/extension-js-monorepo I tried to strip it down to the bare minimum so there's less fluff for you to navigate through

@cezaraugusto I'm experiencing the same: ```json "content_scripts": [ { "matches": [""], "js": ["scripts/bridge.ts"], "run_at": "document_start", "world": "MAIN" } ] ``` When no `key` is used in `manifest.json` you rightfully beautifully...

I had the same issue and just found multiple zod versions to be the issue. https://github.com/colinhacks/zod/issues/2697#issuecomment-2067157523

Ah. The `dist/cep` dir doesn't exist if you haven't built yet, but it doesn't build if it doesn't exist. Chicken-and-egg problem. Adding this to `vite.config.ts` solves the problem: ```typescript //...