Benjamin Oddou
Benjamin Oddou
@pi0, is it possible to call signed url through Nuxt Image with Imagekit set as provider ?
I found also that the global configuration is throwing errors : ```ts export default defineNuxtConfig({ schemaOrg: { canonicalHost: 'https://example.com', defaultLanguage: 'en-AU' // other options }, }) ``` error messages: ```shell...
After digging, I found the origin of the problems: 1. The `defineWebPagePartial()` is now replaced by `defineWebPage()` 2. The syntax of the global configuration changed: before (`nuxt.config.ts`) : ```ts export...
Hello @harlan-zw, I can see that you're working hard on this at the moment! I will try to test the module with the last beta version and let you know...
https://user-images.githubusercontent.com/85166574/181282240-fb9aa3b9-fc9d-4bcc-8aa4-4e0946c4a149.mov
@danielroe @pi0 Thank you for the great work on the last Nuxt release 🙂. However this problem persist with the new version of Nuxt 3 RC-7. I updated the [Stackblitz](https://stackblitz.com/edit/nuxt-starter-gafwaf?file=stores/piniaStore.js)...
Ok my side, I still have the issue when transitioning from Page A to Page B with nuxt rc-10
@harlan-zw @danielroe the problem still persists with RC-13. Please see [my website](https://www.benjaminoddou-photographe.com). Here is the [repository](https://github.com/BenjaminOddou/portfolio)
@danielroe I created issue [#8786](https://github.com/nuxt/framework/issues/8786) with reproduction
@Ischafak my workaround (it's not very pretty) is to use state management that will refresh a variable 🤔. In app.vue const isLink = linkStore() // I am using pinia let...