Matej Šnuderl
Matej Šnuderl
Hey. We're facing some issues with copy to clipboard functionality in Playwright: ```js page.evaluate(() => navigator.clipboard.readText()) ``` In some cases this returns a completely random value, and not one that...
It seems that remove does not keep all resources. Specifically, Cloudfront Distribution and Lamba@Edge associated with it. I see Cloudfront distribution is just being disabled: https://github.com/serverless-nextjs/serverless-next.js/blob/6f68bf1910d80cc69b09f6529081e6ccad74552e/packages/serverless-components/aws-cloudfront/lib/index.js#L319 It would be great...
We've been seeing those errors: `Error: setBlockContext called when checkpointed` in our setup in some cases. We use hardhat forking with configuration that looks like this: ```js hardhat: { chainId:...
#### Expected behaviour Building with `build-push-action` and buildx works as expected. #### Actual behaviour Yesterday we started seeing our docker build push action fail on every commit. This is not...
**Describe the bug** There seems to be some typing issues related to the `GlobalConfig` and Storybook's builtin types (https://github.com/storybookjs/testing-react/blob/main/src/types.ts#L14) I think the issue is in `decorators` specifically. Is there any...
## What kind of change does this PR introduce? Fix default document rendering. Fixes https://github.com/toomuchdesign/next-page-tester/issues/154 ## What is the current behaviour? When `useDocument=false` we didn't properly render the Next.JS document...
## What kind of change does this PR introduce? **Feature:** This PR implements support for redirects inside `getInitialProps` (inside page and custom `__app`). This is useful for apps that are...
In a monorepo one might use multiple actions on a PR to report changes on different modules. - If using comments, each of those actions will override/"update" the previous comment....
It would be great if `NextJS` did per page based `resource.name` tagging (or allow customising of it). We currently have to hack this by overriding it ourselves doing something like...
Hey! Have a question about auto populating `oneOf` fields. Imagine the following factory: ```js const db = factory({ item: { it: primaryKey(uuid), metadata: oneOf("chain"), }, metadata: { id: primaryKey(uuid) name:...