Viktor L
Viktor L
Had to create a bit more complicated workaround because of a few issues. - `import { PrismaClient } from '.prisma/client'` not an option because I'm re-exporting prisma from a dedicated...
Same issue, disabled the daemon for now. WSL / Ubuntu 22.04 / Nx 17.2.6
I've been struggling with this for two days now. PNPM monorepo, Next 14.0.3. Working solution for me right now: - Adding `{ 'thread-stream': 'commonjs thread-stream', pino: 'commonjs pino' }` to...
Watching this issue, have a similar problem. Right now I just moved authentication up into connection upgrade handler. There's a closely coupled issue on the front-end side that lead me...
This would be a great addition, but I can think of a few possible pitfalls when extending middlewares vs procedures. I'll try to explain with code. First, ideas on how...
I've hacked together sorta typesafe way to allow procedures be composable while keeping track of context swaps. The limitation is that the context input type + changes will be passed...
> I think this is due to the fact that these errors don't show up in production builds but still happen. It's possible that it's a dev-only error because of...
@aquaductape I found this issue because I'm doing exactly what you're doing - porting boring avatar marble to Node. I removed feGaussianBlur from the SVG and am now using Sharp...
Getting the same and the root cause is very hard to track down. Right now it seems that it has something to do with the bundler and `react-native-css-interop` module. I...
Two things that have solved it for me: 1. Don't use the same dev server for native and web builds. The bundler will mix up styles if you do, regardless...