Felix Haus
Felix Haus
See: https://nextjs.org/docs/basic-features/data-fetching/incremental-static-regeneration
This adds full support for Next.js Internationalized Routing. - Proxy can detect viewer language - Support for subpaths and domains ## ToDo - [ ] Add license to example -...
This removes the need for adding a `target` to the `next.config.js` ## ToDo: - [ ] Use built-in nft from Next.js - [x] Use new launcher for Next.js server -...
When the proxy receives a URL with multiple slashes in it (e.g. `https://example.com/foo////bar/`), it should respond with a redirect to the normalized URL: ``` https://example.com/foo////bar/ -> https://example.com/foo/bar/ https://example.com/foo////bar -> https://example.com/foo/bar...
## Motivation Lambda@Edge creates new CloudWatch LogGroups in each region where it is deployed to. But Terraform only creates a single LogGroup in the main region. So no retention policy...
When setting up a new Next.js app with 0.9.0, the first apply may fail with the following error message: ``` Error: error creating Lambda Event Source Mapping (arn:aws:sqs:eu-central-1:430654418481:terraform-next-js-existing-cloudfront20210615141542329600000006): InvalidParameterValueException: The...
## Idea ### CloudFront Functions It seems like CloudFront functions includes both, the [full request and the full response](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/functions-event-structure.html) object. So the idea from Original Idea 2.0 could be picked...
Instead of the legacy `experimental-serverless-trace` we should switch to the `server` target for building and bundling the Next.js app beginning with the `v10.0.9-canary.4` version of Next.js. ## History - Tracing...
Currently the static routes are saved on S3 without the `.html` extension like this: ``` /test /foo/index ``` This is not safe if routes are created that also occur as...
In #17 we had a failing test where a SSR lambda imiediatly renders the site instead of returning a fallback. Vercel uses a fallback on this route. See `test/fixtures/00-shared-lambdas/probes.json` for...