Jan Hug
Jan Hug
@konstantin-karlovich-unbiased-co-uk Sorry for not getting back to you earlier, I was a bit too busy with work the past two weeks. I will take a look in the playground and...
I set up a new Nuxt project with version 4.2.0 and installed the latest version of the module without any errors. If possible, could you provide some additional context such...
I'm pretty sure this is related to #69 where the nitro plugin that injects the property on the nitro app was only included if either the `route` or the `cdn`...
Should be fixed in the latest release.
Thank you very much for the explanation! I gave it a try with computing the correct relative path using the `relative` util. That did not work unfortunately. I have reduced...
After some more digging I think that generating a `.ts` file with `addTemplate` is likely something that just happened to work previously, but isn't really supported. I looked at various...
Just ran into this problem again, this time because I'm adding a template with the `.ts` extension where the source is provided by a third party library. There is no...
~~After some trial and error I found something that seems to work, though I'm not quite sure why.~~ ```ts const nitroExternals = ['#my-alias'] nuxt.options.nitro.externals = nuxt.options.nitro.externals || {} nuxt.options.nitro.externals.inline =...
So, what you likely need is the `useDataCache` composable. If you want to cache most of your GraphQL queries, then it probably makes sense to create your own composable that...
Also have this issue in three modules of mine. Haven't found a workaround yet, except for setting up watchers myself and calling the `builder:watch` hook manually. But this sounds super...