Benedikt Schniepp

Results 20 comments of Benedikt Schniepp

I've updated the package.json in the node_modules folder to contain: ``` ..., "exports": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" }, ... ``` It is now working but it seems to me...

I don't work with parcel. So i can't give you any input on that. It fixed it for my use case, which is generating some hex codes from the command...

I had to fix the imports using the following additions/modifications to the `package.json` file in the `node_modules/` folder. I described it aswell in #17. ``` ..., "exports": { "require": "./dist/index.cjs",...

I have not tested it with a new Vite template. Also I don't know to what extend I'd need to go to be sure it's an error with the current...

Hmm, I can try it with canary. Thank you :) Are you on the main branch? I think that one is not on vite just yet.

I'm still experiencing this issue in Remix `2.8.1`. I've tried it in Chrome to maybe surface some errors via `Preserve Log` but the only thing showing up is: `Navigated to...

For anyone coming after this. The error for me was that i had typescript type ending up on the client. My zod schema contained: ```typescript cover: z .union([ z.instanceof(File, {...

For me it didn't seem to be anything related to that. In the end i had to go further with separating the two validation schemas. ```typescript // event-validation.client.ts import {...

How do you provide authentication for Home Assistant to be called via the action from the button. I'm working on the myStrom PIR and am not able to get it...

> I ran into this coming from `22.1.0.1`. According to the contents of `version.php` that was replaced (but shouldn't have been!) 23 requires `22.2` or `23`. > > I followed...