Sebastian Johansson

Results 104 comments of Sebastian Johansson

@danielroe Ah okay. An async hook where? Is there a documentation link I can look at?

@TheBroTMv2 I guess im really late but: https://www.tinymce.com/docs/configure/integration-and-setup/#external_plugins

Something to note is that changing to `ssr: false,` makes it work correctly.

@rchl sorry, trying without bridge how? So the only solution might be to generate the pages manually? Will it still handle the domains? Is there documentation for that specifically?

@rchl wait you meant nuxt Bridge? I thought you meant there was a bridge setting in i18n module! I'll try that.

@rchl I can confirm that turning off nuxt bridge with `bridge: false` did work. I guess it will have to be fine until I can upgrade to nuxt3.

@codeflorist that does seem to be true. Wrapping it in an useAsyncData does work for the calls if you use the experimental module for full static, but it still returns...

I managed to successfully do this. Page: ``` const route = useRoute(); const isPreview = route.query._storyblok && route.query._storyblok !== '' ? 'draft' : 'published'; const version = isPreview ? 'draft'...

@Dawntraoz Thanks! I will look into switching from my current custom solution to this in the future!

@Dawntraoz Hi again. Is it possible to make it so that this can be used outside of mounted/setup? I have a fetch functionality that I use in a NuxtRouteMiddleware. Using...