Erik Müller

Results 9 comments of Erik Müller

Is there a workaround for the time? Listing by IDs seems to be a rather crucial thing to do after all, e.g. for pre-loading associations

CDK recently added constructs for this. In CDK, all you need to do is: ```js const userPoolDomain = new cognito.UserPoolDomain(this, 'UserPoolDomain', { userPool, customDomain: { domainName: `auth.${domainName}`, certificate, }, });...

I would love to see libvips on Amazon Linux 1.

@mhart I found [sharp-libvips](https://github.com/lovell/sharp-libvips/releases/tag/v8.9.1), but the `linux-x64` build is probably not compatible with Amazon Linux 1? I need to add vips to the Lambda Go runtime which is still at...

I'm also getting this error randomly on my build server: ``` app:build: Failed to compile. -- app:build: app:build: ./src/pages/_app.tsx:87:21 app:build: Type error: Property 'withTRPC' does not exist on type '"The...

Is there a reason to use JSON/YAML over TypeScript (or any other programming language) for configuration? What's wrong about a `config.ts` exporting a `config` object? Then you could benefit from...

I'm experiencing the same error when SSHing to an EC2 instance to access my database. The error occurs after some period of time (~30 minutes). ``` Bad packet length 2089525630....

@rscottwatson I'm using macOS as well, still experiencing the issue

@maiertech I just run into the same issue. Are you loading MDX content through plugins other than `gatsby-source-filesystem`? In my case, I was also using `gatsby-source-contentful`, which also creates nodes...