Daniel Roe

Results 2592 comments of Daniel Roe

Currently this is not supported in the error page - only a HTML response is allowed. But I think it's worth considering this ability.

Similar to changing layouts, removing transitions results in an entire rerender of the page. Doing so while transitioning routes effectively breaks the normal ``-powered blocking navigation. In other words, the...

Perhaps we could use `defineNuxtModule` to add compatibility constraints in community modules specifically, even if we don't upgrade them for Bridge/Nuxt 3. wdyt @pi0?

This is still reproducible (although less frequently) - thanks @simirka for reproduction: https://codesandbox.io/s/suspicious-cherry-pqq6ci?file=/pages/test.vue. Initially I think it's a rollup or vite bug.

Would you provide a reproduction? 🙏

Thanks! Minimal reproduction for my future use: https://stackblitz.com/edit/github-k4lob5.

If it helps, for now, a workaround is to disable `experimental.treeshakeClientOnly`.

let's track in https://github.com/nuxt/framework/issues/8397.

FYI, you can hit Ctrl-C to stop the dev server in stackblitz and then run `npm run build && node .output/server/index.mjs` (or hard-code that as the dev command in `package.json`)...

The issue here is that the default axios adapter is undefined in the netlify-edge environment. Here's the (unminified) code: ```js function getDefaultAdapter() { var adapter; if (typeof XMLHttpRequest !== 'undefined')...