sppmstar
sppmstar
Running into that same issue with vue-apollo when trying to implement @nuxt/bridge ... nuxt bridge version: 3.0.0-27304790.cad09fe vue-apollo version: 3.0.7
> If you're encountering this on Bridge, you can try this workaround: > > ```js > import { defineNuxtConfig } from '@nuxt/bridge' > > export default defineNuxtConfig({ > alias: {...
thanks @mrazauskas ! I will try this suggestion
any updates on this issue @danielroe ?
@danielroe is this workaround only available in newer versions ? I tried your suggestion but i get a TypeScript warning about invalid argument (addLayout expects a NuxtTemplate in the version...
I also tried the approach of adding write: true to the addTemplate call; while it does get rid of the error, the custom layout is still not rendering. Please see...
I just tried updating my node modules and am now running `Nuxt CLI v3.0.0-rc.6-27667279.0b22079` but still get the same issue.
hey @danielroe , I confirm it works now when using: ``` definePageMeta({ layout: 'custom', }); ``` Thanks a lot !
I updated the code in the example repo with the working code; hope this helps someone else :) https://github.com/sppmstar/nuxt-3-module-layout-vite-bug