JJ Kasper

Results 828 comments of JJ Kasper
trafficstars

Hi, in Next.js v12 we have an [experimental `outputStandalone`](https://nextjs.org/docs/advanced-features/output-file-tracing#automatically-copying-traced-files-experimental) option which copies all traced files and dependencies to a standalone folder and outputs a minimal `server.js` file to reduce deployment...

Taking an initial look I'm not able to reproduce the HMR failing after a certain amount of time, it may be related to certain files being edited. To ensure webpack...

Hmm we do have a test for server import changes triggering the data to be refreshed client-side [without reloading here](https://github.com/vercel/next.js/blob/2722876eb580f65439f898db6d1fb03c5c0bc5c5/test/development/basic/gssp-ssr-change-reloading/test/index.test.ts#L314), if we could track down a test case for this...

Are you able to reproduce this on the bare Next.js starter from `pnpm create next-app` or is this only occurring with `markdoc` configured?

Ah I see, thanks for narrowing in on that! I was able to track this down to an issue with our entries handling and opened a fix/regression test for this...

Hi, this should now be fixed in `v12.2.6-canary.2` of Next.js, please update and give it a try!

## Failing test suites Commit: 377931318d640764dcb4c43ded64df782ce454bc `pnpm testheadless test/e2e/yarn-pnp/test/with-typescript.test.ts` - yarn PnP > should compile and serve the index page correctly with-typescript Expand output ● yarn PnP › should compile...

# Stats from current PR Default Build (Increase detected ⚠️) General Overall increase ⚠️ | | vercel/next.js canary | vercel/next.js fix/issue-40518 | Change | | - | - | -...

# Stats from current PR Default Build (Decrease detected ✓) General Overall decrease ✓ | | vercel/next.js canary | timneutkens/next.js add/vscode-tasks | Change | | - | - | -...

Just took a quick look at the repro and it looks like `pages/404.js` isn't present so the `router.replace` would need to point the `url` to `/_error` instead. I did a...