Nathan Chase

Results 97 comments of Nathan Chase

OK. I figured it out. I had to delete `@nuxt-modules/compression` and remove it from the `modules` in nuxt.config. So just having: ```js nitro: { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore static:...

> I found another way to make all this work without the need for a patch and everything else. I wrote a module real quick for everyone to use. You...

Another bump for https://github.com/exreplay/nuxt-compression to be considered as a default, zero-config option in Nitro, to automatically enable gzip/brotli compression for all static assets and set Cache-Control/maxAge values.

@J0XX0 @proArtex I'm struggling with the same issue, where the page title is not updated when gtm-module sends the pageTracking pageview event. I'm not sure exactly where to place a...

@J0XX0 I should be specific in saying that I need the pageview tracking to occur whether someone lands on a page after a full page browser refresh (server-rendered) or if...

Yeah, I already have GTM listening for the `nuxtRoute` event, and triggering accordingly. But gtm-module has nothing to send: ![image](https://user-images.githubusercontent.com/5963574/85443592-748ade80-b55f-11ea-8f48-2e8dd5ad356a.png) I'm pretty sure it's an issue of how this method...

Yes, please update https://www.npmjs.com/package/vue-wysiwyg if you are able to @chmln! I also need `forcePlainTextOnPaste` working for my project. Thank you!

I'm finding that the `definePageMeta` `alias` is not working like this module did in Nuxt 2. Specifically, if I have a NuxtLink with a `:to="dynamicRoute"` and I try to replace...

Also see: https://github.com/viandwi24/nuxt3-awesome-starter/issues/8#issuecomment-1103209108

> I've rewritten the component completly in vue 3.0 composition api style, it works with the new scoped slots (v-slot) directive. I won't send a PR because i don't care...