Grégoire Hertault
Grégoire Hertault
Hi @deniszatsepin, thanks for the suggestion. I have a question though: why not using [buildAuthProvider](https://github.com/MrHertal/react-admin-amplify/blob/db8fc5f55911470475759d792d7d2474cb5dcff8/src/providers/index.ts#L8) and [buildDataProvider](https://github.com/MrHertal/react-admin-amplify/blob/db8fc5f55911470475759d792d7d2474cb5dcff8/src/providers/index.ts#L22) in order to get the providers and then extend them following react-admin [documentation](https://marmelab.com/react-admin/DataProviders.html#extending-a-data-provider-example-of-file-upload)?
@jayair I have updated the PR
@jayair @thdxr I found a better way to achieve this by using the distribution key value store
@fwang @berenddeboer Thanks for your reply 🙂 You cannot access request body in CloudFront function, so the `x-amz-content-sha256` header cannot be added automatically. It seems doable in a Lambda@Edge, but...
@berenddeboer `protectedUrl` is optional, false by default. If for some reason adding the header is too much work and does not worth the benefit of having a protected URL, then...
Thanks @jayair I've added an example showing how to use TanStackStart with a protected Lambda URL. The example includes a simple global middleware that handles the `x-amz-content-sha256` header requirement. It's...
@cgcompassion What I currently do is overriding `router.ts` and `ssr-site.ts` in the sst install folder: ``` sst install cp this-pr-router.ts .sst/platform/src/components/aws/router.ts cp this-pr-ssr-site.ts .sst/platform/src/components/aws/ssr-site.ts ```
@Ilnore Hi, > Image optimization shouldn't need PUT/POST, so it shouldn't suffer from OAC? I can run a test with the NextJS component soon. > If there would be plans...
This is now also working with Nextjs image optimizer function. I have updated the PR description. **With this PR, you can now use SST to deploy Next.js and other SSR...
@edbramwell You're right, for POST requests from external sources, this option won't work without adding Lambda@Edge. In my specific use case, I don't need external POST handling, so I prefer...