Ryota Watanabe
Ryota Watanabe
> Maybe it might be better to be checked by TypeScript? Or are you meaning to use it in non-TS env? /cc @danielroe Both TypeScript and JavaScript are supported. (The...
Right. In a TypeScript environment, it would be better to do it with type check. I was only thinking of it for nuxt2, so I didn't think about being able...
I have created a `style-resources-module` for Nuxt 3. (It doesn't support Bridge yet, though.) Please use it if you like. https://github.com/wattanx/style-resources-module
Are you still encountering this? Would you be able to provide a reproduction if so? 🙏 https://stackblitz.com/github/nuxt/starter/tree/v2-bridge
Are you using `@nuxtjs/proxy`, `nuxi`, `nitro: true`? If so, you need to use devProxy with `nitro`. https://stackblitz.com/edit/github-3fgb91-kjeb1y ```diff export default defineNuxtConfig({ - modules: ['@nuxtjs/proxy'] - proxy: { - '/api': 'http://example.com',...
reproduction https://stackblitz.com/edit/github-3fgb91-mo4eua
It seems that in Nuxt 2, `from` is undefined if reloaded. https://stackblitz.com/edit/github-dwx287-bmmrvv I don't know if it can be made to work the same as Nuxt 3, but I will...
On the initial visit, `from` becomes undefined. (same behavior for router middleware) The `from` is present when client navigation is used. (For example, when transitioning from `index` to `next-page`, `from`...
It seems to be resolved, so I close it. Reopen is welcome.
We have added an option to not use `@vitejs/plugin-legacy`. It will be released with Nuxt Bridge 3.2.0! (If you want to use it quickly, it is available after `[email protected]`.)