Anyone already used AOS or vue-aos package with Vue3?
I'm getting bunch of errors due probably to ssr (Vue is not defined, document is not defined) despite disabling in on config.
nuxt.config.ts
export default defineNuxtConfig({
plugins: [
{ src: '~/plugins/aos', mode: 'client', ssr: false }
],
}}
plugins/aos.ts
import VueAOS from "vue-aos"
export default defineNuxtPlugin(nuxtApp => {
nuxtApp.vueApp.use(VueAOS)
})
I tried this way, I tried the way with cdn files (but it leads to AOS is not defined when using .init() and both doesn't work. Every tutorial about AOS is related to Nuxt2.
I also tried to put vue-aos
package on build.transpile on nuxt config without success.
Thanks a lot
nuxt.config.ts