Tim Neutkens

Results 18 issues of Tim Neutkens

WIP. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature...

type: next
created-by: Next.js team

Small change to add a specific task for Next.js compilation in vscode. This can be triggered through `cmd + p` type in `task ` (including the spacebar) to open the...

created-by: Next.js team

This Babel plugin is the most used customization of `.babelrc`. The plugin is split up in multiple separate transforms: [https://github.com/styled-components/babel-plugin-styled-components/blob/a26774e599c82c72e8793989f60310d29c181fac/src/index.js](https://github.com/styled-components/babel-plugin-styled-components/blob/a26774e599c82c72e8793989f60310d29c181fac/src/index.js) The defaults are here: [https://github.com/styled-components/babel-plugin-styled-components/blob/950692b92855f17609e4281d5081e3d2acbf4b6b/src/utils/options.js](https://github.com/styled-components/babel-plugin-styled-components/blob/950692b92855f17609e4281d5081e3d2acbf4b6b/src/utils/options.js) The critical one which makes...

kind: story
area: SWC transforms

Follows `reactStrictMode`. Still recommended to have it enabled (which is the default for new apps). This will become increasingly more important as other features on top of concurrent rendering are...

type: next
created-by: Next.js team

- Run link codemod on examples - Run prettier Ensures the examples show `` usage correctly. ## Bug - [ ] Related issues linked using `fixes #number` - [ ]...

area: examples
created-by: Next.js team

Ensures `cache` property is removed. We'll want to move this handling into the `edge-runtime` package though. ## Bug - [ ] Related issues linked using `fixes #number` - [ ]...

type: next
created-by: Next.js team

Report: https://discordapp.com/channels/752553802359505017/752647196419031042/906556038113800223 Code: ```js import React from 'react'; import { MDGlobalSpec } from '../../../../Meeting/MeetingLayout/MDGlobal'; import { SMGlobalSpec } from '../../../../Meeting/MeetingLayout/SMGlobal'; const baseHeight = 70; const spacing = 10; const mobileSpacing...

kind: bug
area: SWC transforms

Accidentally returned `true` in this case whereas all others are `false`. Fixes https://github.com/vercel/next.js/discussions/41745#discussioncomment-4075803. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added...

type: next
created-by: Next.js team

Removes the `_` prefix from the RSC and Router headers as nginx strips `_` prefixed headers by default. Fixes #42164 ## Bug - [ ] Related issues linked using `fixes...

type: next
created-by: Next.js team

Implements the last piece to make client-side navigation with head.js work, actually providing the head value and writing it into the router cache. Builds on earlier changes in #42791 and...

type: next
created-by: Next.js team