Beto Garcia

Results 14 comments of Beto Garcia

Do you import the EffectFade? This is the v-swiper.js (plugin) that works for me: import { Swiper, EffectFade } from 'swiper' import Vue from 'vue' import VueAwesomeSwiper from 'vue-awesome-swiper' import...

This is the v-swiper.js (plugin) that works for me: import { Swiper, EffectFade } from 'swiper' import Vue from 'vue' import VueAwesomeSwiper from 'vue-awesome-swiper' import 'swiper/swiper-bundle.css' Swiper.use([EffectFade]) Vue.use(VueAwesomeSwiper)

I use tailwind and works perfect the tree shaking. Need amp: { removeInlineStyles: false } in nuxt.config to use inline styles

Está usando a rota /api do Next? Este post pode ajudar: https://vercel.com/guides/getting-started-with-nextjs-typescript-stripe E lembre-se que as rotas api são same-origin por padrão. Tem que setar CORS para receber eventos. By...

Isso ai, no client tem que usar o NEXT_PUBLIC_ prefixo na variável para ter acesso. Abs!

+1 on this. "The new Google Analytics is now the default experience for new properties and is where we’re investing in future improvements."

+1 for this for AMP pages and Web Stories since the new Google Analytics is now the default

You don't need to call this.$fetch() on Created Fetch hook is called after the component instance is created on the server-side. https://nuxtjs.org/blog/understanding-how-fetch-works-in-nuxt-2-12/

> Hi @Beethoven 👋🏻 > > Would you please try using dynamic `import` with `ssr` disabled instead of importing conventionally? > > Syntax: > > ```js > import dynamic from...