Igor Gassmann

Results 39 comments of Igor Gassmann

> > Here's how I solved it: > > ```js > > webpack(config) { > > // Configures webpack to handle SVG files with SVGR. SVGR optimizes and transforms SVG...

I've been asking myself the same question for the past two months. I wonder how useful it is to use the cache on the server. Since the cache is request...

> @IGassmann it's the same behavior as Apollo Client on the client side - if those two queries would actually be the same query, they would be deduplicated. But we...

Hey guys! Can this be merged and released?

We're encountering the same issue. > With GraphQL I only have 1 endpoint (`/graph`). That endpoint can accept unauthorized requests (Without the Authorization header), and this is when it fails...

Here's some good performance test suites we could take some inspiration from: - https://www.sqlite.org/speed.html - https://www.sqlite.org/fasterthanfs.html - https://tinybase.org/guides/how-tinybase-is-built/testing/ - https://orm.drizzle.team/benchmarks - https://benchmarks.prisma.io/ - https://doc.replicache.dev/concepts/performance#specific-performance-metrics

I explored [Artillery](https://github.com/artilleryio/artillery) yesterday as a potential tool to use for running the tests, and overall, I had a pretty disappointing experience. The tool had several issues and it did...

Multiple schemas are already supported: ```ts livestoreDevtoolsPlugin({ schemaPath: [ './src/stores/workspace/schema.ts', './src/stores/issue/schema.ts' ] }) ``` If you encounter issues or have suggestions for improvements, please open a new issue.

I can confirm this also happens on `@clerk/nextjs: 4.27.1`/`next: 14.0.2`. However, it happens for us independently of the use of the `appearance` prop

> @LekoArts I agree with @tjl-jg. I like the context to be within the component using a property. Having a default destination is nice if the property isn't declared on...