ggorge-etiqa

Results 10 comments of ggorge-etiqa

Just switched to https://github.com/wooorm/iso-3166

Isn't it https://en.wikipedia.org/wiki/Bailiwick_of_Guernsey ?

@fhg-isi Have you found any tools to help you do this?

We are working with NextJs and amplify v5. We tried the workaround explained here to configure the `IdToken` at application level but it makes SSR graphQL queries(`withSSRContext`) no longer working....

I'm facing the same error. After digging into `node_modules` and `.next` folders sizes I found out that adding the lines below to the `amplify.yml` build step fixes the error: ```...

Another little update is that `rm -rf node_modules/next/next-swc-fallback` is only really needed. I'm wondering why amplify is bothering on `node_modules` directory size when the `artifacts` folder is set to `.next`:...

@jitendra-koodo I know this is frustrating, but every solution has it's own limits. Docs report this build output limit here: https://docs.aws.amazon.com/amplify/latest/userguide/troubleshooting-ssr-deployment.html#build-output-too-large but I think it should be also mentioned there:...

Why don't just use lifecycle `ignore_changes` in the module? ``` lifecycle { ignore_changes = [ settings["version"], ] } ```

I'm getting the same error. I'm not sure to understand if you fond a solution here @josefaidt

I'm landing here because I'm trying to implement a _dual approval_ strategy where only one user can initiate the approval process. My idea of `schema.graphql` is: ``` type sendApproval @model(subscriptions:...